diff --git a/.tool-versions b/.tool-versions index f269ef21c..49502e14c 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,2 +1,2 @@ -pnpm 10.30.3 +pnpm 10.32.1 nodejs 22.12.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index c8dd5d431..93ced6e2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,32 @@ All notable changes to the Aptos TypeScript SDK will be captured in this file. T # Unreleased +# 7.0.0 (2026-03-14) + +> **Upgrade Guide**: See [UPGRADE_GUIDE_7.0.0.md](./upgrade-guides/UPGRADE_GUIDE_7.0.0.md) for detailed migration instructions. + +## Breaking Changes + +- **Node.js >=22 required**: Dropped support for Node.js 20 (which reaches EOL in April 2026). The minimum engine version is now `>=22.0.0`. +- Upgrade `@aptos-labs/aptos-cli` from ^1.1.1 to ^2.0.0 +- Upgrade `@aptos-labs/aptos-client` from ^2.1.0 to ^3.0.1 +- Build and TypeScript compilation targets raised from ES2020 to ES2022 + +## Added + +- Add `undici` as a dependency (^7.24.1) to satisfy `@aptos-labs/aptos-client` v3 peer dependency for Node.js HTTP support + +## Changed + +- CJS build target remains at ES2020 due to a sucrase transformer bug that generates invalid syntax for ES2022 class fields; ESM target is ES2022 +- Update TypeScript module resolution from `node` to `bundler` for improved compatibility with modern bundlers +- Update pnpm from 10.30.3 to 10.32.1 +- Modernize `tsconfig.json`: add `isolatedModules`, `forceConsistentCasingInFileNames`, `resolveJsonModule`, `skipLibCheck`; remove `allowJs`, `allowSyntheticDefaultImports`, `noImplicitAny` (covered by `strict`) + +## Removed + +- Remove `SIGNED_INTEGER_TYPETAGS.md` standalone documentation file (signed integer TypeTag information is available in the SDK source and [aptos.dev](https://aptos.dev) docs) + # 6.2.0 (2026-03-22) ## Fixed diff --git a/SIGNED_INTEGER_TYPETAGS.md b/SIGNED_INTEGER_TYPETAGS.md deleted file mode 100644 index f52346c96..000000000 --- a/SIGNED_INTEGER_TYPETAGS.md +++ /dev/null @@ -1,125 +0,0 @@ -# Signed Integer TypeTag Support - -This SDK now supports signed integer TypeTags (i8, i16, i32, i64, i128, i256) similar to the existing unsigned integer types. - -## New TypeTag Classes - -The following signed integer TypeTag classes have been added: - -- `TypeTagI8` - 8-bit signed integer -- `TypeTagI16` - 16-bit signed integer -- `TypeTagI32` - 32-bit signed integer -- `TypeTagI64` - 64-bit signed integer -- `TypeTagI128` - 128-bit signed integer -- `TypeTagI256` - 256-bit signed integer - -## Usage - -### Creating Signed Integer TypeTags - -```typescript -import { TypeTagI8, TypeTagI16, TypeTagI32, TypeTagI64, TypeTagI128, TypeTagI256 } from '@aptos-labs/ts-sdk'; - -// Create signed integer type tags -const i8Tag = new TypeTagI8(); -const i16Tag = new TypeTagI16(); -const i32Tag = new TypeTagI32(); -const i64Tag = new TypeTagI64(); -const i128Tag = new TypeTagI128(); -const i256Tag = new TypeTagI256(); -``` - -### Parsing Signed Integer Types - -```typescript -import { parseTypeTag } from '@aptos-labs/ts-sdk'; - -// Parse signed integer types from strings -const i8Type = parseTypeTag("i8"); -const i16Type = parseTypeTag("i16"); -const i32Type = parseTypeTag("i32"); -const i64Type = parseTypeTag("i64"); -const i128Type = parseTypeTag("i128"); -const i256Type = parseTypeTag("i256"); -``` - -### Type Checking - -```typescript -import { TypeTag, TypeTagI8 } from '@aptos-labs/ts-sdk'; - -const typeTag: TypeTag = new TypeTagI8(); - -// Use type guard methods -if (typeTag.isI8()) { - console.log("This is an i8 type"); -} - -// Other available type guards: -// - isI8() -// - isI16() -// - isI32() -// - isI64() -// - isI128() -// - isI256() -``` - -### Serialization and Deserialization - -All signed integer TypeTags support BCS serialization/deserialization: - -```typescript -import { Serializer, Deserializer, TypeTag } from '@aptos-labs/ts-sdk'; - -// Serialize -const serializer = new Serializer(); -const i8Tag = new TypeTagI8(); -i8Tag.serialize(serializer); -const bytes = serializer.toUint8Array(); - -// Deserialize -const deserializer = new Deserializer(bytes); -const deserializedTag = TypeTag.deserialize(deserializer); -``` - -## Type Variants - -The `TypeTagVariants` enum has been extended with the following values: - -- `I8 = 11` -- `I16 = 12` -- `I32 = 13` -- `I64 = 14` -- `I128 = 15` -- `I256 = 16` - -## Implementation Details - -### Modified Files - -1. **`src/types/types.ts`** - Added signed integer variants to `TypeTagVariants` enum -2. **`src/transactions/typeTag/index.ts`** - Added TypeTag classes for i8, i16, i32, i64, i128, i256 -3. **`src/transactions/typeTag/parser.ts`** - Updated parser to recognize signed integer types - -### Features - -- ✅ Full serialization/deserialization support -- ✅ Type parsing from strings -- ✅ Type guard methods (isI8, isI16, etc.) -- ✅ Primitive type detection -- ✅ Consistent with unsigned integer implementation - -## Example: Using in Transaction Arguments - -```typescript -import { parseTypeTag } from '@aptos-labs/ts-sdk'; - -// Parse type arguments for entry functions -const typeArgs = [ - parseTypeTag("i8"), - parseTypeTag("i64"), - parseTypeTag("i128") -]; - -// Use in transaction building... -``` diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/.nojekyll b/docs/@aptos-labs/ts-sdk-7.0.0/.nojekyll new file mode 100644 index 000000000..e2ac6616a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/.nojekyll @@ -0,0 +1 @@ +TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/assets/hierarchy.js b/docs/@aptos-labs/ts-sdk-7.0.0/assets/hierarchy.js new file mode 100644 index 000000000..1578bc043 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/assets/hierarchy.js @@ -0,0 +1 @@ +window.hierarchyData = "eJytXFtz28YO/i96Rtu9X/zmOnHG9ST1iZJ4Jp080NLa5rFMeSgqrdvJfz+zpC670pLEqufFdiQAHxbAYkEQm38m9XLZrCZnf2gFxhgFlksBlDCtwQqpwApNQGojwWjDwFphwFpFgBJiJFCqmQFKqNAgJLdAqeASpLYKmLTSf2W5F8gJKEIEKCL5N5jU7n7hZk25rFaTs38mlPifVfHsJmeTt3MmJbXns9lyXTUTmDyV1XxyRpmBybpeTM4ms0WxWrnVLzHlz4/N82IC3beTs0mzmv/kWX/qPvgBE60CGIR8nGCYzB7Lxbx21eTsD0pAKwmaEKCGAhUEuLVguPj2AyZUhAudltXDwl2712n5ULl6pwmTaqtJWTWuvi9mbvXLAXWvUjuWWDHhHWVoq4WhKS0QBjmkHTc5YzJ07cuje3Z1sbh2rzdFWQ8694AWgaVFgHXtXhdutUKsKqYcx+HWHuOgfBjRnuJBTYj3oGAmjOS7VVMXswa/4jRHTpwzLUDqNpwk54Eyn+qiWhXt1j6v5jf1cnk/pEmCfNwBUocBfOnmri4aN8evv4cFkUFIuIHfrxdNids5B6SYXCUPkfCJMUE+jmi4SASVm2fE0444J5QsbXOjpSH8G1eX34u7hcvSo59rfPmURL49f2mWq8E1ewJEUpI2dOTU1WWxKP/2Sg5m2oAua18yCT5RSM6BaaqAaW6B+TOJacuBGWqAGeH/Uv4v/5n1n1n/mfWfWcuBE2qAE+H/Uv4v/xlVArg/0Dnz3wp/uEnKgCtlQFBmQVDJQTBNQUhNQCjFQBglQFLaKiVBcqlASsVBSsNAKkJBKiZBKv+FZhyklgSkoQSkFb5m0AYUJQQU9znQS6ZESV9YKKX9T9tmIr/g8LSpmvr1cl212eXX18YN+vOYGnPi8PAouCz/cvNRoD0VBiBKA78ul4sh0f57jFAbZuzPZkjkZ4MQaGh4Hn2malAiVRiRItKRs0GRnGFEqkhLJQZFKoERGVuSsmFbUoaxpo2tyeSwOZnE2NNG9rwa1PMKpWVkzathn1+hfG4ja14N+/wK43OfxkKRwz6/wvjcJ8Vo4cM+v0L53CfZUOiIz69QPvdJO6whlt/dFzdrloNl954KAUCVSJxtbo452dwcA3C0gmlTl9XD2Ao6KgQAi+LDs/7+4g+AMYCOCgEgoke+TTVyPp/XbjVcXkSUCCBJWQi0bh5d1ZSzwut57V4HsQ6JMXCGJapF/2RTNOt6sLY5IkbAKcITcDfru0U5G1vdITEGjoer21TSKLRDWgxYtPe3Anwl2zgk2o4YAadZYm0oxx3SYsBEmCF2z/Q4Ux5RYwCjuNyJwK3viBoBaEhYcx4+WaIW2suE6UWoED4HNR9MEC6PwVCmPaTFgGme8uSFq5vy3ucqnC8DegyoDc35rl42j1R9fXoZgtpTIQAos8cAbd/jvJpPm6Jxz274IbePBwMuQ5N+fRptz2xIMKKj5ttXVy+vq+WfCzd/cNNy8Lw+pEWAsagB5M/j326vx47s326vEaI56eu7oDZVkgEDq2gPLGp7JRkwsDZ1rG6bVZhTdUub06TwRgYhePvQ7n8nemqYZhpigcLohHC8TUNiBJyM+gG4Mxx9eEc27HoubX9Fa90aUuqw1ESFKzZEY2gtBAhpGQhFFQjNVYdv2XGpiyvRDmjzDEE4+IIN/FEM/kAEH9cgTPe6wysZPaXMXphUTxSl2TE1IgqUYklAVDgkyBGQmooUJCrQj6kxgDxh1DrLqHWWUbXWScAco9Z5RjU0hLx1d/5BqULZ9IgYAycSYVNn+bDO8qGJH99ROEjx8Rb1jV7/3AG+PAdfRoIv78BXDeDPPvCJGnwUg7c6eFuAsJsTwkQvLM+rV1xSCegQxrD8AAT3LFvlnA++C57oBuwfv4d7Myn6HD9IKjhIqiVIRjRIxi1I36yXzNr2VR6NelspvE2Rkavmhg1jIi1HVAiLnVw9Ql6EMozoEWV2r8RzNdkxYtSIyoredZ2gBb6UknHRnRL2Yfn/iOi0FIyCdsxK26J1pME3wopQhfNUEO9FvHerVfEwnFn6mDDwMjycw3fsWMf08WSlG244SEE1SCEpSJ/ipeSboQHTNzWQmW1GWBHWEtEx3ycPm3Uw/BilJMUqdf4w0jEY58YoZDBWunTupnh1J8XWlhehjOQY63Qpduqq+WkKhfwYpVQY0hePRVldDb4K2ZBgREddzau5V/G+HF7VngoBoEjcUZmvF25Y+S0NRng0BPax+DMw+BBETIkBivJezH5bNo9viqbAA245snKe0hyksu0Tuf/HYfeh3W54E/TxYIxhww273Vx46DQHZjqLhav+uGza10ptI/HisVgsXDV88qU5MMCSHDzPuDlysUfEGDjdl4Tqh3XUxU1PAyY4cmcC2xmczXQPt93ATjvE007t7Cd52umebnRnN8nTzf6080A2HgrSlrfhq000vBkOyCCXmOTJXWQ7x9SOHHmTd5pFbfrprC5fmkzV0ky5uu00MtEMc+Dam+J1sSwGU+kxdVbKMUyDNMKCNP5ZzqrOe4b1HNgbjM4AeXp1PIi9YYQdBI8CI0+HiBWjSt823chrU+zIO4p+LoQCNnoHumXMC5F+LowCqqfWvqoqV+cFaMiSFaXWtKPL/ve4Ml/oCep8oeO28JcQ0vBv/3KzdTM2l5lkyLGDIpSDIkyDIqJNHf6TMZWy9uohG8YqfbliL+uUHdvDjVFI9GzaQOTzSzPY7+jnwigge53S1MXFsrpHZ4yAIy9SFOviI3qdkBaM3jARD8YO2kQ11fPLwqFrqgNiBBw9HrBvq9/scjkPlkcXKj69vrhPxbB7O5Isf3KjQAmhQUliQEllQSl/MUpZCkpLBsr45GC0AGW5BGWtAk2kBu3HpzXVFjQTBDQnFDRXArRgGrSwXaRwo46XMTY0HJAhLCWEPoYYHiHeESHES5JwxPC06o4II17ZhPbDs6t7KgSA4iShPwoANSPrYyWxguFR2T0VAkBLllgBCgA1kutjPLGC4cncPRUGIBpF2eqGAkBNAPu9mYqi4UHggAwDYRM7eWzWOCDDXGWSqZ08MnkckCEg4tddW/VwELgZZ58TjyEQ87UxJQKIicTOPrj1148zcuVvD8NJYn9/dPeudtVsuDQ9oMWAqcROeecqV5czBNSGEgEkWCLWxofRI0IMjE3krmlTr2fDtXNIiICJB206tpF6YUeEEG9YT+l5u6yf0J3sjhhx7e9gYva7q5q3z2XTDCNtBikulnP3c8iTUxH5lQKlTLdPhv4C+vFLM6wOJ93V7m7T+kvvIfCHKRr0w/QkQBH1qS+W5WBRGyJ62tMgo5h9Uz6UTbE4X60c2sIhz0kqWBGeBpfFeoYH76hPg1Xhyi/X1UPpb4jmLD1iOkWJ9r9LCOd+feYsBsvyEH9DfhoyjSr2zSA2FnlDfiJyNF06bYqnkas7IfKG/DRkFpfhY12dEPdTbkcnQI1G1NoLwr/f/dcNHz5RPtmznKaBjOZV3rlmkxY/FM9udV4/7P2eborHQXfEjeiOd2pEzfC9oDfL56KsTlck4MerwpOqTNd383+pTSwCr5CKFeoW9W/0SUnAqqOiPtfohYAQGXM1IJ77JlZ1capUFKd09NJ0tGKKvD3dXgwPcVgeDsPi+BImXbK9L6riYfRKR5R/UswYHUT0VPqftatf243bXVXMCakj3ty3Ym0igjYPtD95+7PzPZXRjaVbV7rajzitVjfLcvStXajmISsy5Gn8Vv5iXX93udB7pmzT+PV3htBR0/FdvVy/5Ox7T5+PrjT/9uPHj/8B4c3rbQ==" \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/assets/highlight.css b/docs/@aptos-labs/ts-sdk-7.0.0/assets/highlight.css new file mode 100644 index 000000000..bb3e8d3d0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/assets/highlight.css @@ -0,0 +1,141 @@ +:root { + --light-hl-0: #795E26; + --dark-hl-0: #DCDCAA; + --light-hl-1: #000000; + --dark-hl-1: #D4D4D4; + --light-hl-2: #A31515; + --dark-hl-2: #CE9178; + --light-hl-3: #800000; + --dark-hl-3: #808080; + --light-hl-4: #800000; + --dark-hl-4: #569CD6; + --light-hl-5: #000000FF; + --dark-hl-5: #D4D4D4; + --light-hl-6: #E50000; + --dark-hl-6: #9CDCFE; + --light-hl-7: #0000FF; + --dark-hl-7: #CE9178; + --light-hl-8: #AF00DB; + --dark-hl-8: #C586C0; + --light-hl-9: #001080; + --dark-hl-9: #9CDCFE; + --light-hl-10: #008000; + --dark-hl-10: #6A9955; + --light-hl-11: #0000FF; + --dark-hl-11: #569CD6; + --light-hl-12: #0070C1; + --dark-hl-12: #4FC1FF; + --light-hl-13: #EE0000; + --dark-hl-13: #D7BA7D; + --light-hl-14: #098658; + --dark-hl-14: #B5CEA8; + --light-hl-15: #267F99; + --dark-hl-15: #4EC9B0; + --light-hl-16: #000000; + --dark-hl-16: #C8C8C8; + --light-code-background: #FFFFFF; + --dark-code-background: #1E1E1E; +} + +@media (prefers-color-scheme: light) { :root { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --hl-8: var(--light-hl-8); + --hl-9: var(--light-hl-9); + --hl-10: var(--light-hl-10); + --hl-11: var(--light-hl-11); + --hl-12: var(--light-hl-12); + --hl-13: var(--light-hl-13); + --hl-14: var(--light-hl-14); + --hl-15: var(--light-hl-15); + --hl-16: var(--light-hl-16); + --code-background: var(--light-code-background); +} } + +@media (prefers-color-scheme: dark) { :root { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --hl-8: var(--dark-hl-8); + --hl-9: var(--dark-hl-9); + --hl-10: var(--dark-hl-10); + --hl-11: var(--dark-hl-11); + --hl-12: var(--dark-hl-12); + --hl-13: var(--dark-hl-13); + --hl-14: var(--dark-hl-14); + --hl-15: var(--dark-hl-15); + --hl-16: var(--dark-hl-16); + --code-background: var(--dark-code-background); +} } + +:root[data-theme='light'] { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --hl-8: var(--light-hl-8); + --hl-9: var(--light-hl-9); + --hl-10: var(--light-hl-10); + --hl-11: var(--light-hl-11); + --hl-12: var(--light-hl-12); + --hl-13: var(--light-hl-13); + --hl-14: var(--light-hl-14); + --hl-15: var(--light-hl-15); + --hl-16: var(--light-hl-16); + --code-background: var(--light-code-background); +} + +:root[data-theme='dark'] { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --hl-8: var(--dark-hl-8); + --hl-9: var(--dark-hl-9); + --hl-10: var(--dark-hl-10); + --hl-11: var(--dark-hl-11); + --hl-12: var(--dark-hl-12); + --hl-13: var(--dark-hl-13); + --hl-14: var(--dark-hl-14); + --hl-15: var(--dark-hl-15); + --hl-16: var(--dark-hl-16); + --code-background: var(--dark-code-background); +} + +.hl-0 { color: var(--hl-0); } +.hl-1 { color: var(--hl-1); } +.hl-2 { color: var(--hl-2); } +.hl-3 { color: var(--hl-3); } +.hl-4 { color: var(--hl-4); } +.hl-5 { color: var(--hl-5); } +.hl-6 { color: var(--hl-6); } +.hl-7 { color: var(--hl-7); } +.hl-8 { color: var(--hl-8); } +.hl-9 { color: var(--hl-9); } +.hl-10 { color: var(--hl-10); } +.hl-11 { color: var(--hl-11); } +.hl-12 { color: var(--hl-12); } +.hl-13 { color: var(--hl-13); } +.hl-14 { color: var(--hl-14); } +.hl-15 { color: var(--hl-15); } +.hl-16 { color: var(--hl-16); } +pre, code { background: var(--code-background); } diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/assets/icons.js b/docs/@aptos-labs/ts-sdk-7.0.0/assets/icons.js new file mode 100644 index 000000000..3ae8f55e5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/assets/icons.js @@ -0,0 +1,18 @@ +(function() { + addIcons(); + function addIcons() { + if (document.readyState === "loading") return document.addEventListener("DOMContentLoaded", addIcons); + const svg = document.body.appendChild(document.createElementNS("http://www.w3.org/2000/svg", "svg")); + svg.innerHTML = `MMNEPVFCICPMFPCPTTAAATR`; + svg.style.display = "none"; + if (location.protocol === "file:") updateUseElements(); + } + + function updateUseElements() { + document.querySelectorAll("use").forEach(el => { + if (el.getAttribute("href").includes("#icon-")) { + el.setAttribute("href", el.getAttribute("href").replace(/.*#/, "#")); + } + }); + } +})() \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/assets/icons.svg b/docs/@aptos-labs/ts-sdk-7.0.0/assets/icons.svg new file mode 100644 index 000000000..10db10be0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/assets/icons.svg @@ -0,0 +1 @@ +MMNEPVFCICPMFPCPTTAAATR \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/assets/main.js b/docs/@aptos-labs/ts-sdk-7.0.0/assets/main.js new file mode 100644 index 000000000..64b80ab2d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/assets/main.js @@ -0,0 +1,60 @@ +"use strict"; +window.translations={"copy":"Copy","copied":"Copied!","normally_hidden":"This member is normally hidden due to your filter settings.","hierarchy_expand":"Expand","hierarchy_collapse":"Collapse","folder":"Folder","search_index_not_available":"The search index is not available","search_no_results_found_for_0":"No results found for {0}","kind_1":"Project","kind_2":"Module","kind_4":"Namespace","kind_8":"Enumeration","kind_16":"Enumeration Member","kind_32":"Variable","kind_64":"Function","kind_128":"Class","kind_256":"Interface","kind_512":"Constructor","kind_1024":"Property","kind_2048":"Method","kind_4096":"Call Signature","kind_8192":"Index Signature","kind_16384":"Constructor Signature","kind_32768":"Parameter","kind_65536":"Type Literal","kind_131072":"Type Parameter","kind_262144":"Accessor","kind_524288":"Get Signature","kind_1048576":"Set Signature","kind_2097152":"Type Alias","kind_4194304":"Reference","kind_8388608":"Document"}; +"use strict";(()=>{var Ke=Object.create;var he=Object.defineProperty;var Ge=Object.getOwnPropertyDescriptor;var Ze=Object.getOwnPropertyNames;var Xe=Object.getPrototypeOf,Ye=Object.prototype.hasOwnProperty;var et=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var tt=(t,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Ze(e))!Ye.call(t,i)&&i!==n&&he(t,i,{get:()=>e[i],enumerable:!(r=Ge(e,i))||r.enumerable});return t};var nt=(t,e,n)=>(n=t!=null?Ke(Xe(t)):{},tt(e||!t||!t.__esModule?he(n,"default",{value:t,enumerable:!0}):n,t));var ye=et((me,ge)=>{(function(){var t=function(e){var n=new t.Builder;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),n.searchPipeline.add(t.stemmer),e.call(n,n),n.build()};t.version="2.3.9";t.utils={},t.utils.warn=(function(e){return function(n){e.console&&console.warn&&console.warn(n)}})(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var n=Object.create(null),r=Object.keys(e),i=0;i0){var d=t.utils.clone(n)||{};d.position=[a,l],d.index=s.length,s.push(new t.Token(r.slice(a,o),d))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,n){n in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. +`,e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(r){var i=t.Pipeline.registeredFunctions[r];if(i)n.add(i);else throw new Error("Cannot load unregistered function: "+r)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(n){t.Pipeline.warnIfFunctionNotRegistered(n),this._stack.push(n)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");r=r+1,this._stack.splice(r,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");this._stack.splice(r,0,n)},t.Pipeline.prototype.remove=function(e){var n=this._stack.indexOf(e);n!=-1&&this._stack.splice(n,1)},t.Pipeline.prototype.run=function(e){for(var n=this._stack.length,r=0;r1&&(oe&&(r=s),o!=e);)i=r-n,s=n+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(oc?d+=2:a==c&&(n+=r[l+1]*i[d+1],l+=2,d+=2);return n},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),n=1,r=0;n0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var c=s.node.edges["*"];else{var c=new t.TokenSet;s.node.edges["*"]=c}if(s.str.length==0&&(c.final=!0),i.push({node:c,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}s.str.length==1&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var d=s.str.charAt(0),f=s.str.charAt(1),p;f in s.node.edges?p=s.node.edges[f]:(p=new t.TokenSet,s.node.edges[f]=p),s.str.length==1&&(p.final=!0),i.push({node:p,editsRemaining:s.editsRemaining-1,str:d+s.str.slice(2)})}}}return r},t.TokenSet.fromString=function(e){for(var n=new t.TokenSet,r=n,i=0,s=e.length;i=e;n--){var r=this.uncheckedNodes[n],i=r.child.toString();i in this.minimizedNodes?r.parent.edges[r.char]=this.minimizedNodes[i]:(r.child._str=i,this.minimizedNodes[i]=r.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(n){var r=new t.QueryParser(e,n);r.parse()})},t.Index.prototype.query=function(e){for(var n=new t.Query(this.fields),r=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),c=0;c1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,n){var r=e[this._ref],i=Object.keys(this._fields);this._documents[r]=n||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,n;do e=this.next(),n=e.charCodeAt(0);while(n>47&&n<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var n=e.next();if(n==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(n.charCodeAt(0)==92){e.escapeCharacter();continue}if(n==":")return t.QueryLexer.lexField;if(n=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(n=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(n=="+"&&e.width()===1||n=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(n.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,n){this.lexer=new t.QueryLexer(e),this.query=n,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var n=e.peekLexeme();if(n!=null)switch(n.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expected either a field or a term, found "+n.type;throw n.str.length>=1&&(r+=" with value '"+n.str+"'"),new t.QueryParseError(r,n.start,n.end)}},t.QueryParser.parsePresence=function(e){var n=e.consumeLexeme();if(n!=null){switch(n.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var r="unrecognised presence operator'"+n.str+"'";throw new t.QueryParseError(r,n.start,n.end)}var i=e.peekLexeme();if(i==null){var r="expecting term or field, found nothing";throw new t.QueryParseError(r,n.start,n.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(r,i.start,i.end)}}},t.QueryParser.parseField=function(e){var n=e.consumeLexeme();if(n!=null){if(e.query.allFields.indexOf(n.str)==-1){var r=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+n.str+"', possible fields: "+r;throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.fields=[n.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,n.start,n.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var n=e.consumeLexeme();if(n!=null){e.currentClause.term=n.str.toLowerCase(),n.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var r=e.peekLexeme();if(r==null){e.nextClause();return}switch(r.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+r.type+"'";throw new t.QueryParseError(i,r.start,r.end)}}},t.QueryParser.parseEditDistance=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="edit distance must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.editDistance=r;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="boost must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.boost=r;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},(function(e,n){typeof define=="function"&&define.amd?define(n):typeof me=="object"?ge.exports=n():e.lunr=n()})(this,function(){return t})})()});var M,G={getItem(){return null},setItem(){}},K;try{K=localStorage,M=K}catch{K=G,M=G}var S={getItem:t=>M.getItem(t),setItem:(t,e)=>M.setItem(t,e),disableWritingLocalStorage(){M=G},disable(){localStorage.clear(),M=G},enable(){M=K}};window.TypeDoc||={disableWritingLocalStorage(){S.disableWritingLocalStorage()},disableLocalStorage:()=>{S.disable()},enableLocalStorage:()=>{S.enable()}};window.translations||={copy:"Copy",copied:"Copied!",normally_hidden:"This member is normally hidden due to your filter settings.",hierarchy_expand:"Expand",hierarchy_collapse:"Collapse",search_index_not_available:"The search index is not available",search_no_results_found_for_0:"No results found for {0}",folder:"Folder",kind_1:"Project",kind_2:"Module",kind_4:"Namespace",kind_8:"Enumeration",kind_16:"Enumeration Member",kind_32:"Variable",kind_64:"Function",kind_128:"Class",kind_256:"Interface",kind_512:"Constructor",kind_1024:"Property",kind_2048:"Method",kind_4096:"Call Signature",kind_8192:"Index Signature",kind_16384:"Constructor Signature",kind_32768:"Parameter",kind_65536:"Type Literal",kind_131072:"Type Parameter",kind_262144:"Accessor",kind_524288:"Get Signature",kind_1048576:"Set Signature",kind_2097152:"Type Alias",kind_4194304:"Reference",kind_8388608:"Document"};var pe=[];function X(t,e){pe.push({selector:e,constructor:t})}var Z=class{alwaysVisibleMember=null;constructor(){this.createComponents(document.body),this.ensureFocusedElementVisible(),this.listenForCodeCopies(),window.addEventListener("hashchange",()=>this.ensureFocusedElementVisible()),document.body.style.display||(this.ensureFocusedElementVisible(),this.updateIndexVisibility(),this.scrollToHash())}createComponents(e){pe.forEach(n=>{e.querySelectorAll(n.selector).forEach(r=>{r.dataset.hasInstance||(new n.constructor({el:r,app:this}),r.dataset.hasInstance=String(!0))})})}filterChanged(){this.ensureFocusedElementVisible()}showPage(){document.body.style.display&&(document.body.style.removeProperty("display"),this.ensureFocusedElementVisible(),this.updateIndexVisibility(),this.scrollToHash())}scrollToHash(){if(location.hash){let e=document.getElementById(location.hash.substring(1));if(!e)return;e.scrollIntoView({behavior:"instant",block:"start"})}}ensureActivePageVisible(){let e=document.querySelector(".tsd-navigation .current"),n=e?.parentElement;for(;n&&!n.classList.contains(".tsd-navigation");)n instanceof HTMLDetailsElement&&(n.open=!0),n=n.parentElement;if(e&&!rt(e)){let r=e.getBoundingClientRect().top-document.documentElement.clientHeight/4;document.querySelector(".site-menu").scrollTop=r,document.querySelector(".col-sidebar").scrollTop=r}}updateIndexVisibility(){let e=document.querySelector(".tsd-index-content"),n=e?.open;e&&(e.open=!0),document.querySelectorAll(".tsd-index-section").forEach(r=>{r.style.display="block";let i=Array.from(r.querySelectorAll(".tsd-index-link")).every(s=>s.offsetParent==null);r.style.display=i?"none":"block"}),e&&(e.open=n)}ensureFocusedElementVisible(){if(this.alwaysVisibleMember&&(this.alwaysVisibleMember.classList.remove("always-visible"),this.alwaysVisibleMember.firstElementChild.remove(),this.alwaysVisibleMember=null),!location.hash)return;let e=document.getElementById(location.hash.substring(1));if(!e)return;let n=e.parentElement;for(;n&&n.tagName!=="SECTION";)n=n.parentElement;if(!n)return;let r=n.offsetParent==null,i=n;for(;i!==document.body;)i instanceof HTMLDetailsElement&&(i.open=!0),i=i.parentElement;if(n.offsetParent==null){this.alwaysVisibleMember=n,n.classList.add("always-visible");let s=document.createElement("p");s.classList.add("warning"),s.textContent=window.translations.normally_hidden,n.prepend(s)}r&&e.scrollIntoView()}listenForCodeCopies(){document.querySelectorAll("pre > button").forEach(e=>{let n;e.addEventListener("click",()=>{e.previousElementSibling instanceof HTMLElement&&navigator.clipboard.writeText(e.previousElementSibling.innerText.trim()),e.textContent=window.translations.copied,e.classList.add("visible"),clearTimeout(n),n=setTimeout(()=>{e.classList.remove("visible"),n=setTimeout(()=>{e.textContent=window.translations.copy},100)},1e3)})})}};function rt(t){let e=t.getBoundingClientRect(),n=Math.max(document.documentElement.clientHeight,window.innerHeight);return!(e.bottom<0||e.top-n>=0)}var fe=(t,e=100)=>{let n;return()=>{clearTimeout(n),n=setTimeout(()=>t(),e)}};var Ie=nt(ye(),1);async function R(t){let e=Uint8Array.from(atob(t),s=>s.charCodeAt(0)),r=new Blob([e]).stream().pipeThrough(new DecompressionStream("deflate")),i=await new Response(r).text();return JSON.parse(i)}var Y="closing",ae="tsd-overlay";function it(){let t=Math.abs(window.innerWidth-document.documentElement.clientWidth);document.body.style.overflow="hidden",document.body.style.paddingRight=`${t}px`}function st(){document.body.style.removeProperty("overflow"),document.body.style.removeProperty("padding-right")}function xe(t,e){t.addEventListener("animationend",()=>{t.classList.contains(Y)&&(t.classList.remove(Y),document.getElementById(ae)?.remove(),t.close(),st())}),t.addEventListener("cancel",n=>{n.preventDefault(),ve(t)}),e?.closeOnClick&&document.addEventListener("click",n=>{t.open&&!t.contains(n.target)&&ve(t)},!0)}function Ee(t){if(t.open)return;let e=document.createElement("div");e.id=ae,document.body.appendChild(e),t.showModal(),it()}function ve(t){if(!t.open)return;document.getElementById(ae)?.classList.add(Y),t.classList.add(Y)}var I=class{el;app;constructor(e){this.el=e.el,this.app=e.app}};var be=document.head.appendChild(document.createElement("style"));be.dataset.for="filters";var le={};function we(t){for(let e of t.split(/\s+/))if(le.hasOwnProperty(e)&&!le[e])return!0;return!1}var ee=class extends I{key;value;constructor(e){super(e),this.key=`filter-${this.el.name}`,this.value=this.el.checked,this.el.addEventListener("change",()=>{this.setLocalStorage(this.el.checked)}),this.setLocalStorage(this.fromLocalStorage()),be.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; } +`,this.app.updateIndexVisibility()}fromLocalStorage(){let e=S.getItem(this.key);return e?e==="true":this.el.checked}setLocalStorage(e){S.setItem(this.key,e.toString()),this.value=e,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),le[`tsd-is-${this.el.name}`]=this.value,this.app.filterChanged(),this.app.updateIndexVisibility()}};var Le=0;async function Se(t,e){if(!window.searchData)return;let n=await R(window.searchData);t.data=n,t.index=Ie.Index.load(n.index),e.innerHTML=""}function _e(){let t=document.getElementById("tsd-search-trigger"),e=document.getElementById("tsd-search"),n=document.getElementById("tsd-search-input"),r=document.getElementById("tsd-search-results"),i=document.getElementById("tsd-search-script"),s=document.getElementById("tsd-search-status");if(!(t&&e&&n&&r&&i&&s))throw new Error("Search controls missing");let o={base:document.documentElement.dataset.base};o.base.endsWith("/")||(o.base+="/"),i.addEventListener("error",()=>{let a=window.translations.search_index_not_available;Pe(s,a)}),i.addEventListener("load",()=>{Se(o,s)}),Se(o,s),ot({trigger:t,searchEl:e,results:r,field:n,status:s},o)}function ot(t,e){let{field:n,results:r,searchEl:i,status:s,trigger:o}=t;xe(i,{closeOnClick:!0});function a(){Ee(i),n.setSelectionRange(0,n.value.length)}o.addEventListener("click",a),n.addEventListener("input",fe(()=>{at(r,n,s,e)},200)),n.addEventListener("keydown",l=>{if(r.childElementCount===0||l.ctrlKey||l.metaKey||l.altKey)return;let d=n.getAttribute("aria-activedescendant"),f=d?document.getElementById(d):null;if(f){let p=!1,v=!1;switch(l.key){case"Home":case"End":case"ArrowLeft":case"ArrowRight":v=!0;break;case"ArrowDown":case"ArrowUp":p=l.shiftKey;break}(p||v)&&ke(n)}if(!l.shiftKey)switch(l.key){case"Enter":f?.querySelector("a")?.click();break;case"ArrowUp":Te(r,n,f,-1),l.preventDefault();break;case"ArrowDown":Te(r,n,f,1),l.preventDefault();break}});function c(){ke(n)}n.addEventListener("change",c),n.addEventListener("blur",c),n.addEventListener("click",c),document.body.addEventListener("keydown",l=>{if(l.altKey||l.metaKey||l.shiftKey)return;let d=l.ctrlKey&&l.key==="k",f=!l.ctrlKey&&!ut()&&l.key==="/";(d||f)&&(l.preventDefault(),a())})}function at(t,e,n,r){if(!r.index||!r.data)return;t.innerHTML="",n.innerHTML="",Le+=1;let i=e.value.trim(),s;if(i){let a=i.split(" ").map(c=>c.length?`*${c}*`:"").join(" ");s=r.index.search(a).filter(({ref:c})=>{let l=r.data.rows[Number(c)].classes;return!l||!we(l)})}else s=[];if(s.length===0&&i){let a=window.translations.search_no_results_found_for_0.replace("{0}",` "${te(i)}" `);Pe(n,a);return}for(let a=0;ac.score-a.score);let o=Math.min(10,s.length);for(let a=0;a`,f=Ce(c.name,i);globalThis.DEBUG_SEARCH_WEIGHTS&&(f+=` (score: ${s[a].score.toFixed(2)})`),c.parent&&(f=` + ${Ce(c.parent,i)}.${f}`);let p=document.createElement("li");p.id=`tsd-search:${Le}-${a}`,p.role="option",p.ariaSelected="false",p.classList.value=c.classes??"";let v=document.createElement("a");v.tabIndex=-1,v.href=r.base+c.url,v.innerHTML=d+`${f}`,p.append(v),t.appendChild(p)}}function Te(t,e,n,r){let i;if(r===1?i=n?.nextElementSibling||t.firstElementChild:i=n?.previousElementSibling||t.lastElementChild,i!==n){if(!i||i.role!=="option"){console.error("Option missing");return}i.ariaSelected="true",i.scrollIntoView({behavior:"smooth",block:"nearest"}),e.setAttribute("aria-activedescendant",i.id),n?.setAttribute("aria-selected","false")}}function ke(t){let e=t.getAttribute("aria-activedescendant");(e?document.getElementById(e):null)?.setAttribute("aria-selected","false"),t.setAttribute("aria-activedescendant","")}function Ce(t,e){if(e==="")return t;let n=t.toLocaleLowerCase(),r=e.toLocaleLowerCase(),i=[],s=0,o=n.indexOf(r);for(;o!=-1;)i.push(te(t.substring(s,o)),`${te(t.substring(o,o+r.length))}`),s=o+r.length,o=n.indexOf(r,s);return i.push(te(t.substring(s))),i.join("")}var lt={"&":"&","<":"<",">":">","'":"'",'"':"""};function te(t){return t.replace(/[&<>"'"]/g,e=>lt[e])}function Pe(t,e){t.innerHTML=e?`
${e}
`:""}var ct=["button","checkbox","file","hidden","image","radio","range","reset","submit"];function ut(){let t=document.activeElement;return t?t.isContentEditable||t.tagName==="TEXTAREA"||t.tagName==="SEARCH"?!0:t.tagName==="INPUT"&&!ct.includes(t.type):!1}var D="mousedown",Me="mousemove",$="mouseup",ne={x:0,y:0},Qe=!1,ce=!1,dt=!1,F=!1,Oe=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(Oe?"is-mobile":"not-mobile");Oe&&"ontouchstart"in document.documentElement&&(dt=!0,D="touchstart",Me="touchmove",$="touchend");document.addEventListener(D,t=>{ce=!0,F=!1;let e=D=="touchstart"?t.targetTouches[0]:t;ne.y=e.pageY||0,ne.x=e.pageX||0});document.addEventListener(Me,t=>{if(ce&&!F){let e=D=="touchstart"?t.targetTouches[0]:t,n=ne.x-(e.pageX||0),r=ne.y-(e.pageY||0);F=Math.sqrt(n*n+r*r)>10}});document.addEventListener($,()=>{ce=!1});document.addEventListener("click",t=>{Qe&&(t.preventDefault(),t.stopImmediatePropagation(),Qe=!1)});var re=class extends I{active;className;constructor(e){super(e),this.className=this.el.dataset.toggle||"",this.el.addEventListener($,n=>this.onPointerUp(n)),this.el.addEventListener("click",n=>n.preventDefault()),document.addEventListener(D,n=>this.onDocumentPointerDown(n)),document.addEventListener($,n=>this.onDocumentPointerUp(n))}setActive(e){if(this.active==e)return;this.active=e,document.documentElement.classList.toggle("has-"+this.className,e),this.el.classList.toggle("active",e);let n=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(n),setTimeout(()=>document.documentElement.classList.remove(n),500)}onPointerUp(e){F||(this.setActive(!0),e.preventDefault())}onDocumentPointerDown(e){if(this.active){if(e.target.closest(".col-sidebar, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(e){if(!F&&this.active&&e.target.closest(".col-sidebar")){let n=e.target.closest("a");if(n){let r=window.location.href;r.indexOf("#")!=-1&&(r=r.substring(0,r.indexOf("#"))),n.href.substring(0,r.length)==r&&setTimeout(()=>this.setActive(!1),250)}}}};var ue=new Map,de=class{open;accordions=[];key;constructor(e,n){this.key=e,this.open=n}add(e){this.accordions.push(e),e.open=this.open,e.addEventListener("toggle",()=>{this.toggle(e.open)})}toggle(e){for(let n of this.accordions)n.open=e;S.setItem(this.key,e.toString())}},ie=class extends I{constructor(e){super(e);let n=this.el.querySelector("summary"),r=n.querySelector("a");r&&r.addEventListener("click",()=>{location.assign(r.href)});let i=`tsd-accordion-${n.dataset.key??n.textContent.trim().replace(/\s+/g,"-").toLowerCase()}`,s;if(ue.has(i))s=ue.get(i);else{let o=S.getItem(i),a=o?o==="true":this.el.open;s=new de(i,a),ue.set(i,s)}s.add(this.el)}};function He(t){let e=S.getItem("tsd-theme")||"os";t.value=e,Ae(e),t.addEventListener("change",()=>{S.setItem("tsd-theme",t.value),Ae(t.value)})}function Ae(t){document.documentElement.dataset.theme=t}var se;function Ne(){let t=document.getElementById("tsd-nav-script");t&&(t.addEventListener("load",Re),Re())}async function Re(){let t=document.getElementById("tsd-nav-container");if(!t||!window.navigationData)return;let e=await R(window.navigationData);se=document.documentElement.dataset.base,se.endsWith("/")||(se+="/"),t.innerHTML="";for(let n of e)Be(n,t,[]);window.app.createComponents(t),window.app.showPage(),window.app.ensureActivePageVisible()}function Be(t,e,n){let r=e.appendChild(document.createElement("li"));if(t.children){let i=[...n,t.text],s=r.appendChild(document.createElement("details"));s.className=t.class?`${t.class} tsd-accordion`:"tsd-accordion";let o=s.appendChild(document.createElement("summary"));o.className="tsd-accordion-summary",o.dataset.key=i.join("$"),o.innerHTML='',De(t,o);let a=s.appendChild(document.createElement("div"));a.className="tsd-accordion-details";let c=a.appendChild(document.createElement("ul"));c.className="tsd-nested-navigation";for(let l of t.children)Be(l,c,i)}else De(t,r,t.class)}function De(t,e,n){if(t.path){let r=e.appendChild(document.createElement("a"));if(r.href=se+t.path,n&&(r.className=n),location.pathname===r.pathname&&!r.href.includes("#")&&(r.classList.add("current"),r.ariaCurrent="page"),t.kind){let i=window.translations[`kind_${t.kind}`].replaceAll('"',""");r.innerHTML=``}r.appendChild(Fe(t.text,document.createElement("span")))}else{let r=e.appendChild(document.createElement("span")),i=window.translations.folder.replaceAll('"',""");r.innerHTML=``,r.appendChild(Fe(t.text,document.createElement("span")))}}function Fe(t,e){let n=t.split(/(?<=[^A-Z])(?=[A-Z])|(?<=[A-Z])(?=[A-Z][a-z])|(?<=[_-])(?=[^_-])/);for(let r=0;r{let i=r.target;for(;i.parentElement&&i.parentElement.tagName!="LI";)i=i.parentElement;i.dataset.dropdown&&(i.dataset.dropdown=String(i.dataset.dropdown!=="true"))});let t=new Map,e=new Set;for(let r of document.querySelectorAll(".tsd-full-hierarchy [data-refl]")){let i=r.querySelector("ul");t.has(r.dataset.refl)?e.add(r.dataset.refl):i&&t.set(r.dataset.refl,i)}for(let r of e)n(r);function n(r){let i=t.get(r).cloneNode(!0);i.querySelectorAll("[id]").forEach(s=>{s.removeAttribute("id")}),i.querySelectorAll("[data-dropdown]").forEach(s=>{s.dataset.dropdown="false"});for(let s of document.querySelectorAll(`[data-refl="${r}"]`)){let o=gt(),a=s.querySelector("ul");s.insertBefore(o,a),o.dataset.dropdown=String(!!a),a||s.appendChild(i.cloneNode(!0))}}}function pt(){let t=document.getElementById("tsd-hierarchy-script");t&&(t.addEventListener("load",Ve),Ve())}async function Ve(){let t=document.querySelector(".tsd-panel.tsd-hierarchy:has(h4 a)");if(!t||!window.hierarchyData)return;let e=+t.dataset.refl,n=await R(window.hierarchyData),r=t.querySelector("ul"),i=document.createElement("ul");if(i.classList.add("tsd-hierarchy"),ft(i,n,e),r.querySelectorAll("li").length==i.querySelectorAll("li").length)return;let s=document.createElement("span");s.classList.add("tsd-hierarchy-toggle"),s.textContent=window.translations.hierarchy_expand,t.querySelector("h4 a")?.insertAdjacentElement("afterend",s),s.insertAdjacentText("beforebegin",", "),s.addEventListener("click",()=>{s.textContent===window.translations.hierarchy_expand?(r.insertAdjacentElement("afterend",i),r.remove(),s.textContent=window.translations.hierarchy_collapse):(i.insertAdjacentElement("afterend",r),i.remove(),s.textContent=window.translations.hierarchy_expand)})}function ft(t,e,n){let r=e.roots.filter(i=>mt(e,i,n));for(let i of r)t.appendChild(je(e,i,n))}function je(t,e,n,r=new Set){if(r.has(e))return;r.add(e);let i=t.reflections[e],s=document.createElement("li");if(s.classList.add("tsd-hierarchy-item"),e===n){let o=s.appendChild(document.createElement("span"));o.textContent=i.name,o.classList.add("tsd-hierarchy-target")}else{for(let a of i.uniqueNameParents||[]){let c=t.reflections[a],l=s.appendChild(document.createElement("a"));l.textContent=c.name,l.href=oe+c.url,l.className=c.class+" tsd-signature-type",s.append(document.createTextNode("."))}let o=s.appendChild(document.createElement("a"));o.textContent=t.reflections[e].name,o.href=oe+i.url,o.className=i.class+" tsd-signature-type"}if(i.children){let o=s.appendChild(document.createElement("ul"));o.classList.add("tsd-hierarchy");for(let a of i.children){let c=je(t,a,n,r);c&&o.appendChild(c)}}return r.delete(e),s}function mt(t,e,n){if(e===n)return!0;let r=new Set,i=[t.reflections[e]];for(;i.length;){let s=i.pop();if(!r.has(s)){r.add(s);for(let o of s.children||[]){if(o===n)return!0;i.push(t.reflections[o])}}}return!1}function gt(){let t=document.createElementNS("http://www.w3.org/2000/svg","svg");return t.setAttribute("width","20"),t.setAttribute("height","20"),t.setAttribute("viewBox","0 0 24 24"),t.setAttribute("fill","none"),t.innerHTML='',t}X(re,"a[data-toggle]");X(ie,".tsd-accordion");X(ee,".tsd-filter-item input[type=checkbox]");var qe=document.getElementById("tsd-theme");qe&&He(qe);var yt=new Z;Object.defineProperty(window,"app",{value:yt});_e();Ne();$e();"virtualKeyboard"in navigator&&(navigator.virtualKeyboard.overlaysContent=!0);})(); +/*! Bundled license information: + +lunr/lunr.js: + (** + * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 + * Copyright (C) 2020 Oliver Nightingale + * @license MIT + *) + (*! + * lunr.utils + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Set + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.tokenizer + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Pipeline + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Vector + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.stemmer + * Copyright (C) 2020 Oliver Nightingale + * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt + *) + (*! + * lunr.stopWordFilter + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.trimmer + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.TokenSet + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Index + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Builder + * Copyright (C) 2020 Oliver Nightingale + *) +*/ diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/assets/navigation.js b/docs/@aptos-labs/ts-sdk-7.0.0/assets/navigation.js new file mode 100644 index 000000000..96b71316c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/assets/navigation.js @@ -0,0 +1 @@ +window.navigationData = "eJy9XWtz4zaW/Ssp75fdqsxm2un2zOSbLMttpduWx5LbmUylXLQIyxhTpAYk3fZszX/fAh8iHvdFdXY/peN77jkgCIHABXDx9/85qtRrdfTT0TTTKq+Ovj9aP+ksNSo/+unve+NkVxXl0fdHu6R6OvrpaJ0lZanKH5o///dTtc2Ovj961nl69NO74z//+3vfb1rkj3qDeLfGmOM3h2W+3WVqq/IqqXSRY0Vcr4s6r777z0X+h+lTovPvLotUZf+FwR/KyiTrSqWdI1C+EEI+aQf+pN4yVZYsqY8jmVEq3vdMGf2SPGRK8Lg4llKYpccfPrz7C8rq20mm3ZPaKpNkn9TbdaINwBUgKLZzlSqTVCrlXggCpLg5SjnTZZ1V+pN6Q6kCAMW11PkmUxRZiKDYVibJy2Rtf3CTPL02RfEYEwIginNqVFKpTvzcFNtr2+KqpkRm4/QvOq+UeUzWqvyB8fHljj+cRHJ+AxylyrmKxcOKP6QUPAdfnG8qx7cVYP8Um1yZaZGXlanXVWFQUcpBLGTL2PZrto1eJ9WTTA/2o2Q/qrzpRrrKQWUAnITWb4osewwfIRK+aKka5CeRHa03VmhopSPaA+dECxbF47mq1k+zF5VXmIAPogj3Tyz//dAuI8T2LVao5OIpmS/K6Mc352eXVLXBVXA4L9J/RaUqIJ6X8SpCogM7yFrWNMmyh2T9PNBXbzuvWfWIgO+Pf/nTuw/HIOd5orPaKJyyA8gZl1VS1SVO2NpH8NXrtSopwhbAMQZtlusXWhWRE6e8bj6mi4d/qHU1SVPjPc1jnTejqfIHAOYzn7yPSG9UWdRmrVjaAMgSr4pnlbOsLoqlvC2VaSpPpcK6wDwiKXfqeDpdIhPA06LI4hGt/Ss9oSqV0Umm/6WACYprJac6eWXezrvnO32rFDC3jjHkdEe/qhRhGmwUw/zd8Z9jX/tX2usEcjohfY4/QE7HH2ivH48Bpx+PSZ+T94DPyXvSB6oFsg4uixf1890nYPLWGjjfZWV0DsRHBhvH8EXZ7zrM0NrIiWPXZu3cH5g0OlYJi0pxDpWKGIAnWYp+V7dgG75l2vAt1IZv6TZ8C7bhW6YN30Jt+JZuw7dQG76l2/AtVAtkHQw9l98KnCGLD6EGKSova6NsV6qSHOrQPQDxqSjqavF4k+QbNTOmMJeqLJONghhhJEH9kmQ6TSp1VW8flJnnjS/EDALJbw4ZSf2oqibueaP+WauyWuwalXCkAaO4ocVHVbG04xivi1JSXAQmYeeJx3EmTjGg1+naieaxUaD3RjFOTS2c11l2VaRgcwoxArprtdsps1TmRa9JTg9IEO+Sjc6TSt3p6mlam9L9dAysMYqiLODqtn9n3NrqSOo1XOUBRERG1H8EkhDO81S9KriWAoyEjn2hMFJEbYoXnW9E3B6UIDf4r8kgPyS3O7xS1dfCPCP94WDtyFVeb8sfuj/7xH+OWVdFs9YzdwYdL4nR9gu1J9ljfLYfjyG6tpVNruck4R4loexaBsc5wCSk3T+ukq0iWR2ciLZIFVfQDiOha9svR7hHiShN8SKg7FERpds092Nbal2xnWXO82YgcKOSssjD1gph8KZ7oV5JttCOM31Sb6u3nQoJuj/jfv0KXx/nwpcpe4Rk6fO6fsj0mqTbQyR8+6AYzreHCBZQowBDsI4KhhNAJupBAwTJlr9RTI6VYaEqyrGSLHX1pPJKr5ufAlygECJYFh6C6OjK8ACR8OH1FSIEbES9hQjRwvVUmUo/2gqCGAGUiJV65ggjYqSeO8KMWWQniopCKf6Ppqie3p000d1JntpgcbMPJKbHkAL2JhRPNXwYJ2D+9XmHsv36vKMYLtRr7HqhXgXbEtodNbXpP2rw5gQPJWAlXu2YN9phiRYYItjtE3zXAMKkvERRQZhkuwe+z0PizZXIhVB814kpdb5pAiYxlWslWfB6F9X1Uq13xx9Ont9R3woAJOPECxdjRIxE5ccYAaORPLcZ99xG8Nxm1HMbwXMb4XMTRBL/O/VgRyI5wRNBKL5flSk+5cXXTKUbtYT2KYYIku0Z2SrVGSjffk1YunYsXDL2h7fzfFc73882zAZAuDhbtxL3Sb1FQTvHxEYA207mRpV1FpXKM3JMYaWUb/kaWsPFcBz/5Hq1WN6fzq/fv7+/mX2c/QJNPyMQMaFtsReTm7PZ1eyM4/RxBO3s+tP9xeJm/uvi6n45a1Y/I8oQQ9DtdRfn58vZCmILIATZ5eSX+8nt2f2Xyef707+tZmDhIhBDOF1cXs5Xs7N7+1Qka4xkqGe/rG4m9+fz2eczmjkCMsTz5ZKvBA/EEP58t7q/mE3OZjf3pyfvaV4Iy9Dfzs/uP83+RvN6IAEhWwEeiCB80Jt5Xq2KZon78wyKUwYQItj5YBGr4rRxQMh8CEE2/XRmP9wQSWcinNOmG/W+4YP73kivH3iDfWTpwMMQdE9J+bSszKo41ypLITIfQVDpcprkRa7XSYaPsgdeAk6KfLExtKY3tptzYGYfw9NdJCZVuUoZRhdGkG5ztbUPtiqWSoF16iPIRZ3U7sFO1s9NI7erNp8VuPoKI+nVBaXTIr9ISvCZXTtBU+4yXWH1tjeSawnOhvMSidc6kLvCPCvT7q6c5fU2jJMSUDx2aiOrq2RjByfKNLMjKAQLo4iIbDcC6+Kausijxe4wXBlBJTHQIYYHzfkg1FhWp1wyAcdhrFbXG8h0OvBYDXeSLxNyPQ5SoyLLIHqsyn4jo0xmDxfoLO2KYL7utkug/D6M4o3W93omcFGP2GcHBDtdMx3nVNfJmzI3yVenz4CCnBCO3G2W2lp+1FBVDTZ6/1daZwqqoN7C7R5rd1bAu8daGxuVmmxUXnG1gyFl7ELqMbzgbL+3SLwdsevkLSsS6C2gWEqBq0t5DfpI+7E/S6qEY+xxJHPRHshsAhvTpyTLVA59sGAcGSNaG72DDrA1f+eiSyolqy6C0Hz27CnDF0BIvuYMxioBGt7eRPm7J+7obzmGPIQd/fwxDodo9X2oXKz3OERt6DjkeoPPwYqjK1Q6psD820/4UuXpmJp1vYSqaD84rv+L0cy3nHEYp4V/HXDsOAWsh8OQQvZ2GkPSthCSr527ACytQeCL7rXw7QIm+JiGYxRwNCfS9Bql6ewCJviQhGMUcQA7xwebhAHcfO4YJRzQVvTBJmGANqYPNgkDUZeSmnRm1yiRgxEw3qhHZey8BOXbIwRs7TExlKo1S3iakQHO05gFPPDxCMco4sCbHnNmokdRrZc7QdHDiNbLnKfoUUTrZU5X9CiiLiU1iR3a8czi2e3EbGp/a4x7th1CUmuGzRJgf5AXm7ehC5Ri728ugj+VGVuEeIJDFKEbCzW/2UPqgfb/HYohqwvanypGOxARtTcYSpH71YEzAzghrRvh5ahdLLm0nr9hE/VuYT0EsMvMocM8L6vE+yAhzD1QoBAPMgkVHMwp+b3O6TwkD+3j+Lq3b3vLaJEfR7Iar2pdW69zneuyzczg/7A6BQTH8XcH6FHe0M7y4dU7omabHsKrNKhsMOowbhtfAspMgg9XulHbolKj9PYuItW+d6U+DI4iDh+lhnb+gBTd0Yt1kHN6DPxQta7DGfNwjsvvoEo1U5Hn71QGugGP8BeVpw9poPXuAkYzUnUK4A7ip+sLRYu02sENWjeDWcamt3Um/C0j2EN1qN8yDpep1Q9bXYmeCUKKNL5o9ZX9XIWgg5ipFotgD9ahWy7pMVrz51JYcz2QU4DH/eAQjYCyKs2Ci3w0yOFZvTalEDpmC+0cnxWNJzktl2tjt7w6bwhoMIF5DJt931EgP2Z1YBz7zhRbXarzOnvUWabSMC/UsPMPRhLb/5I2jazOgbW14Ny/h6I2AdY6gxcRnV2AAYagWz+p9fPCpmB7UaaKX72T6QhEUtQCzrFk4daNiAratAFsXXQqx98iFW5jDIAk8T7Bks2+1XYi1MOTDoTQY5OXz+syHjQkAAI5YgnnCLp2owdFtkdwVF6nQRAGOIpW5+m5NmV1VeRt2GliwF8oCCS3t0KTKHiTK4QUUBO7CWJ2Zl+BTODcLro2Q6+xap6nUFrnGyKnDowcTW0LBuYW4pQCx1D4+zZi3vQKO6Psedr0SFKaEe8T8xNUArUmHotxq+NCiWikKlECh6ygoE3B5/hj+4EJuEDE7VoENQfADxMR1B3uRUr6uykFP3HCgRYaCmcqMJViiCHo7G7+L0lWK5BosBIUujxdl0RiR9fO0fgbAQKOeCNATAClSAxosEyJMZm/ESCgiTcCQAQnhP8J6+4toob+0SIqQOCuoIb+4Qoq4O4un4bu4fIp4E5UHlt1Yb7EgABKmRiT3FIvMF4LhwjwFxAthAPu1AuMV8EBAuIFRkvggDvxAqP1b8CdqDym6vDfMfcjnm131Vu4W9llcAA0Ub4uUpUyC+geM+FBSn1OzCbaDO8yOwCSiOIQuA9hyeAEsMsTgGhC4lfI/gSLJoEvOWEPIBRZ88JpMh9CkO3sfqFoB5x7eGqwEzR2hTRNTKr/1YPBrw4AI0lttZIPGkAIsurJFF+t6KUut0m1BkdyESgi9E5nddE3LO+ld8pcleeFseOcT+rtRpW7Ii+j5WeRExd6Gkhs+Ke0rZvXi6BjVLJMtfVnB4eLr3aeZlNjS1QZV3kpBt/SBj4GZr4UrOtBpfhrrYzgRWMeEs2rpU1zR2n4CAFnc8hoVeyCqUxJiHAuEtV9lTOtFQZKFGpjVG7nAhttr3wqS1WdJpnd1kE+m8BNrt68ZvvCTfmkd7wsjBfonalMbWx8YFklzzrfTNaVftGVJp+VdxIot3uICBUfIGD06l70IIzHWM1LVSUp3SxJvECvHc8sHrtXUBjq8XCwQKm9ScD+eLj+CUFKNIYujeKPUQLua1PYtafCtMskBD+CFGisbPRtXqkt9+2EgaMUBI0LB0uUmjsq2t8A9bZBnJSfq6YQw/KaZPf0z6xpdxGfY+N4FiZV5jSi6P4s9G6CPghFY2OXP+3jL7uBb7T+6RphJnfEeVvpDBtxNkmOJzsNHc93bb6Kl9qs/8lAFJ4R5/Cz5k+biHXwzACE3cTZJAWaLuZX0BLqYCWWTVvQ+QQnOJ8Q7mez88nt59W9TdTycbK8n1wubq/A/EAwUkC9+uXqfvbLtU1RdH9+s7i8v1rcUQIQXiizml/OFrcr68opOFCC/HJ+JaiaGEVQ3kzu7lc3k6vlZLqa28xNk88gKYQbQXs3X13cn01WE7GA70FIPSSlOnl/a7IztUbSswcQwcr3tr+L8KLeJvmNSlJbylWxyJuBOLUizriOEe9cVoVHJRKHXakV1awozKq4eyoydVHUYEwoxNDLBtztGgGEju/VSHDutBYF5cLDTkAUDjrwBOXq6QN18/yxgAkjGEGaF2bbbCQ4rfMUfrcBhCT7Os+Xal3kKRgYcu1ctIqtuBhFBZkypXYQS2OgAkqmzu0iLLHeE0AIsq+JyeePZ+pFZcUOC8tGICA65V/M0pywoi+Q9pberorDE+fAvn4RgxQq3agEOdHomSmeLqMXQuNaKRb3yDl9P7H8jmcq16ksxakTUWnPYMC3VoGw0bzNeoKQvMGOVxCfakd8RisKTp6HYLFGZRLssncYN575yzsp95d3QvZ5nisjyVvgAg/gZoruQ2N+tyezKcpUm7t7THf2xY7h3J9xNxvCofjExr2fAOONISTfPqsfzhdCqImX3Vq4XNt89iGRa8MZoIz9SMkIqICfq0cUKODm6hQFEtyvO922vXAXb0cZ2HEm91M0TSq1KdwAx/4ykwgjY7S3nGbNIb2V3lG0HlDGjVy74tlxpku9VRBD/3fCs3ix2zgzXUUV5Zho//7T8UWXGqeKUVSgpP90d40nahMxAme7KTKwdvq/457t5wo4I4wVi3UgtNrtgXAH4xmFHMG6PEAELMp7bPVDWmwTnQ8/wOsi0+vo9aJAnBvLEIT0KgxcpDOMQrC3R4KFGsNwQSISoUUq3pedl4HgIh25xCHsfbQaTHcKw0S8guIKytklzcC4fDPO8+vzDmnSgyX0dgdmfa+JjcqSeEi0KvCtNAScmDzvg2hdwmsy0NZh+GBX12bsRXXQeDmKcIF4QsY5qgFcXwEe6UCusMBoySTTEI4KwtlTEN6tz8EJiejiZ+jcxvCZpU9veLiQlt8IX83LclLbrM+3Ov2SgPvvYhQdM+xGOz/ffcI2GjsImuo62TS3jC4eHuuyKT5+KykBJ0Se1OuqmJRrrfHfWoiho5xZsX6e7XRWbGoF9H5ICJTx4iX7Jc9xkoQXHZIVJWcflZO9T9bIcEYwktQegC91Ka4UHE/KOFdTYTsxPQhJNiQlYqoCAPLEsjcnuMAqIL9WearzjbimcTy9uZS4bsnbaMpcuRTS9omsqVcYgASEbYJMrqgQlNlhm1Rqak+E7grtZTam65z3I2WDfWu0FgLm12bsbECsQnmQqyPDDdaSbwuFJ2W0Uel50veyxAIIAuVWeH7+Wl2oJEVuoPYQBNVLc/URfgOfc+c9iBxNbevx56/PkzzFLyCReZLbjuf7HF5YKDQv/XuSnaxfnS3YcOFn+WqvjA8bqEviIiiqaaaxzGatiXeO7raPOMDb7WEq4pl8CEnW/ECu2x8PlQ8PAlLETbzDnbVm9UYzee5AOCWCfNQdXuKb7lOFn1NlD/KXzYJrYdBaYb0oyW7jlXek2uEezBSJ4NXJXxr6jXXzA1Kf2CCDn7shDHvMEEQSDg2kzT1TIYWEgBRxe7McOKRirvJDfSi5uyfVgEDe3hgTuB1nmxUA6zW7kO3U26mzbV1+cIyBBkw2tylYbGCVumpdch37x3dBSCNYPm5K1IGoNbqPxxKeY5YHue7RZUEufhx5r1FzU+Ffa1Wrqd1ub1OjYDe3OtqYF/lI7Zj9zH5Gavjj4D2eB6dbHHlCCLxmGdtH670m0pPbSwldiCxRpfz4nauL6qnpd6CaOLWpZej32kCol9gn8KJpehTJ1HR+DE+DoVimRjXg/rxKlHwMaV2IH9UzDoeJzppVjhL/qrmNCPKSydgB5FiRvY9MYr9kM1bHd2TE2icfrwX5UVLNbvWmBqTNIPKg6G/URpeVMhZ/nZhkqypleA3YjRw4mWKnTAXviQ8+AQMQ6xzc7mFytcS+A1dLpsu/WtIfm2EzF7FvhNHAtnqN325HXRcHSEpvi9t/96TfR4qtOaQ1C8eKEJ+LjBiHQH1Vpn/Q5R/Ua6VMnmRH8FDgMsmTjdqCl9O4oqAL824KjY2wOhOhZxE0/Zne6CrJmvNfiEwAIeRc5Ddvi+qOEjYz9qY/WSr7ZZkWWb11HtvbtdA+NOWILyiSbpFxstmY5tChzYUwe93Z/0zytN+VULZu2O4KvpyHCv5fPt/C/P8+XqxHLugm9Rptw3sj0XpbDN1uvfOSmFaAoSRdKK3cpg7O0EP7vZWaJLUgWoeN0U2TLFvqip9u9MDouyzqXae1eVHXNizOC+2hh0k18yzp+MYFHyb30RT1jh+sWdRhAni63maBn5Vm/KlxFhD/RkSQOHg0bPNSjN6oss74BgG7HVaZd0orY0cyZSlrjaHDGFn3h9jNWpFf4WAlfvAdiP7BN93vjvjBw2MqKL6Ej6ne4w+NhKG4bsjVsuto7q1h2E/XLV7sf1j7+GxnIrky5/k4/cHv0AZiQzTfTTKdEEP37vt5meyoSY9XMMcHnP/IulTLCN2qQL8P9GIFuWhfr+OEe69vFG9+S+OUG5fDZZsF14YIzKiNagd+Ywvwm1eE7rzpqP5jOKUq+on6BfyRLps/Q2/zQVBnz/cIav45AOn+dH/v3KgfJRau/4+kQ28bdNebvvvL+x//SPSpXoG6rChYKH9vpaKGLYgJjXcHvCCVFXz4y5sbwwe/kOA7pgNljGVm4oymoJftIh0q3WeHQhYT4x8l58vFxDsv/+AsIDPAWMbHR52HI2+AcYAd3nt5ByUXu4quqhDMPokxydtp/fiozGf9TIb9AujhT3SqN9q+xO0uMbq0O9HJLy8A557KzoxVksslADynwU7PKUHW+ZvVu9jHNxWi4/hdyrIgRxtCim8uydSPBh9QkGkcKhaU45AmMa4lgFnM5LKUO1eC5gCi/TJFHTXXs9OenO7sdZ3VKdlndZBvGLK+NuWiNRrI4Rr99uDF/vJ375jRwlwp3S2wooWQcnB1er47JmV2x9/wnHDqNkEjpT3ZZ4ISuI1VDfw4TTLZJ5j7Cl7xxLzl+vvknyNUfZ8xWkjKz3KUOEkiLw2a+nNEYWiOg8pymLpUD0vYKVElfSXaXgJPkWLsIdEhvlkiVc5fXgY/i+cIccBRoIqn8ZRIM94C/TbBp0TLQQp4kQ5eIkS5jlXuO/nRup6jQLUZ4ElUBqCENUoeKpKAvQR6QRZRRidAC/iDLJ8SEchFoOQn+5QIAR6jdMY0NcRLoudm/hRJRQ5SFXHFeWCOvb3iNHl7IIf5A4rnkwceQizHbW8QfJgmZcXwujgZp7TEMZrjZ6tWVKtNto78LUzaBrC5QI71yu5/0Wvx00N4TmPh7QaNORfRTtAxMx5ovx6wnw7bnjdGSa+fSQ29fv4GdlP8owlj+ukSwK2BA5DRG853f0dI36h1EWfW9Xc6WsThD7dcJ1lCv6EOwjWm9qi1uL0CcE5h+BII5q8RWMTef2LECqEDq6K3qqyS7U5cUbAHvvN01NJ9N9Xqky8Ha02uNV6uh3c2kScfnMwMg9pwgtDTc7C+tndcUXkJC5sMsOqV5Qa9CJVHlTa3xqXdhomRcrQ7pWuKLZr3w5fokQybqLhsuZ4PqgbQi1DZ2sNUn9TbSBnYjdAp+zNsI4UQP0KpwrO4eMwVm8mlKi7UK54BI2DbY2WMNvJU1NW1UY+arwbMMdIKeyfJyml3jgO4q9sxCddAgYPSHhVyPBrgy0sy9X1o5/newjvBeqI36EIwgKE9thycJ+5IHJuIZ6mqSufx4oVnZJmGCHx7iCtMr9ZxwjB2jTMpVffWgAxDLTWEYXltjpWIyP5R5DnLU2ih3bXJeCTpaFxuaSIaRE+Ui8bRE2ehAVbsmsPoYRaBltu1yXjaHaIlNDKPACxjsW22EqWCWqCw/Iphk767GT5CHVto5/kyVZF8vp3l00atqzujK7VUUW/iW9lVSjfBcZc4DKtTCsvqvKh4abv5o8jzY62jTnxvYFfYmmMBcIt2bfxKXZZdFalCmDwrG5dKyllZ6W1wM3F30Yxr5CNc7YXJ0WGy/hIczzySzY4XutPyDLGDPECjy9jTpCjYJxoCPhkjXCWlKHUZJdcbhAarkEvQL0nTYcUaF+o1SFvaMvZ/52OLqXptEl4AjdcziqKe/Zto0l7YWYPzSNFJjF5E5jdKf2nHTfm6u9Z1ZCE4Z0G81rvbuJeookuNYd8TyPVE4OndaLx3ja4yBn1/jPZQNH8UeLr3GO89wwuMQU+ojtga+qzSjTLQeG2wyDi+KFO2+VRgpsEuiiW3ux6gMU1glrDFNxIMVPDNAzRP07b12so3oVuKN8SO0ZlHfaZvlXC1vxSsIgerlOuEojoZwXT8gaLqrEKuH48JqtYoZDp5TzC1RiETVefiGm9z2kAsrUXOYYMp/jVVIVePkHPC7bO3SXjaJWGspgariKv5oKBce6uEy+bQr80aZOptEp42IztV9z5CxAkusg0WOce5Vhn4Ch2znA1uDb1NzoO9wcEq4cJYpP63muw4HbOYDe3vBquUi+g8HbOUDe8+B6uUC+9AB6uUi6x9cd2D6Uz2BpbBRtJLvWEm7giMY5ckoO2Ww4SpZwGNJnEgPClxbTIeLDDqW1mu/QUa4IQrMHNsN8nX7i70kGiwsEu3TT/MvGUQJGPGYkm+leXyUw0uzGe1SdZv2L1mnYTEiV/aTsTpezvZkYl7icVuJKof2lk+5/ILNKN0R41DR6gQ6cEjGSZHOKnTTbZ1gfzMCegIFTLHdyTEJvrmtUa8JEHub1KP+eHjyBEaAvIDWKnk4hE/l2GcVpIIHMRLph0HNNjc47FeN2ALabs/i7yjeFD7V4kvEEzq/izxjsNJ7V8lvnFAqf2rxBesLb6uuIzrHZck13rMLku33krIE63HOneJrs4LQbQTBbIKyIhAOhbocdOnJN9Ez+5bx3G1q2Vw7AFHHqKBzbMp7CE6+5GCRGgPHqfU/J+k0hzgAQqyKvOgB6gIK8zHYhvy3F8vnQZjMp3ae+PvJ6fL1U1/4/v849X86iN9i7vI0S+fd5n7+fxmdjpZzu4nt6uL+/lyeX89Wa1mN1eQGAomBFazX1b3s6vp4mx2A3G69ojmt3//9r+/x8mt" \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/assets/search.js b/docs/@aptos-labs/ts-sdk-7.0.0/assets/search.js new file mode 100644 index 000000000..0b0bf8cdd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/assets/search.js @@ -0,0 +1 @@ +window.searchData = "eJzUvVt3Gze27/tdotfVe8XqxCdrvdEyZSu2JS5Rcrp7P3CUWCAFi6yq1EUSs8f57meg7hdgXgCUep+nxCKA/w8oYGLi/n9+SuOX7Kf//t//56cnGYU//ff5f/wUBUfx03//tErlc5CLizgUP/3HT0V6+Om/fzrGYXEQ2X/2fvtfj/nx8NN//LQ9BFkmsp/++6ef/t//aFL7rU3tokhTEeWLJI+z6+AosrU4iG1+ER+KY9SmL6LiOEwdjKfR/o+fkkBFGGWgQ3r3vmX6GB8D6SZ+FjZpoAxwahDh8jWRaZDLOLqTR5HlwTHxAS3aZPNesjPm4w+ZP66L3U6++sB/kflj1qQ2C7X3cn/DEr/KFttcPgs3YJkFTSozUa5SeQzSkytm0iYzC+fXIMvv0iAqiyOOvos0k7Gj5TgEWZ53aT63ac6Sg5uXSKSLMExFlrlxxyqloE1pFtpbsZdZLlIRekFO2+Rm5l4XD6GHTiXrJTMvZ2fiVvFBbh3bYcvdGbqkSXaWfNzFTyJSYd24c5VMVCUzH+c6D6IwSEMPrFmXlD9eorM2+XGx36diH+TiQxwflq+J+s8iChfpvjiKKM+qaNZN2FbP0Tl07UCdsD12vNafa54O27VYvHX0HsrFZ4O5Sd+0vUzl/v/QXAzUb91aNN/q39hYzIXytm0FLpXzrrEsttu4iPK2UGq4QbHUYWwq5a/vujmMbRxleVps8zgly50NI+FF1+Snl9ufz39pGYKHLE8rH5/OMIzkzLCNo53cs4qgCm+jfP7zL93HDkUqn0Ud6DKNj3XcL+JEx6kSCao/7dL4mFQhnwStcpMY1QgprENminQt95Fg1JsqGTU8CmvUTLFmTTLOnHuR1yEWq7vFkdWIzvYir6mCJA+ayB6ZLmIZ2UNtYxnNRZVduFBl25moPgZ5YA0VVpG9Mh2UxZdxlKmJurI5lOOWzA6yTU1N1JWtIm9S80h9Fe1iGz5ZxfNI8q2cG7dhOTYxvdNYfbpjG9U/zyrYOxRRllTRPXKV1fzm4YfY5laFVVbsuI3vm8y+Ac7W4npcqpfszMZ4qs4OVnWZnfHgzNeRc3ArsrhIt1YVMe3izkBkVXhpL/IcTLZttuXy32qzyzhdFQ8HuWX5kR1btovTpEzAkw/ZsVVNw9rlqFrBDD5Hb/3Cqprlw/gzkdmXWy8Rn6X3ITgEEdNWPLRxnAkOcfxUJDep3MsoODTuP9fSVqnEdSrNOMDJtmpG9AveSLcX/I3H+WNl2yF/P8POI28dFHMQTuARUfBwENPwvTZoBVul29Ss7td8kK5jTgYtIwjDRZE/iiiX23Kp6bKIvGQlCMNgkPCuTni+vIQym+ez1Am/5XdRdl37XawyoAy89mN4ppbZNOyyrNOhFbeakh6XuWjT80meimP8LOZpClXab90aKtWPMkuCfPtYNoyOIE79ZCrsJR/0k/ear0Eveb2Gea/Xb9YP1lL8ju967dLT9WTJXdtAcVBPtgcRpHdBqiwOxSNq1VW8vIzH8oHMJJ0vW+10I4J03mvYRvPEUS7TcCmiOpInhnaXCRsk68d0pak+iQVMHd4nS7ffhkwh+lFc9Qd7ZTBl8o4YWFO79QzTZu8ygxnqhVhW9uvlU0+lYGGn9iL3aqWabXD0Umhi+CiDVETiZbTlGhGPxAtjHxygnVnUgMxrDcisakDmXgMGHohawK8mu2H9LtybeSQjSb5n0subg4eiwSB7KlqCiTUsA6i1vw+n6v9JNWLMpUxk+U+1EPhwqv6fVUv05dWvLdkp2v5PIQqkwbTB3qyuDBX5VaXLmKGm/MnN9VkTw1J96NeqycMDrwiaKD70Q8HPfxfHB4GI+ARdHB8EMrsoixQd/48oZLbtxfNDsjwmObLKMaEQdRwfBImIQhntP1af+KuI9vkjC6dOoK4jhyYB25aqtVHt51qmKdl+DCNZbYHswXwo5AGuLWWItzKTnRjbQlY5se9Gh9LUDnSsOqiEx+KQy8VeIKtDPeUyRlDHcFTP5DFBNnf0lNvQFiXdq09qlxAoqQK8VW1qtdiVqcyGfV0aCFOr0khz8C3LCb6dSFUY6lxiB9HEVruwuFOF45LofeuPci/z4LDIMgFX8H7At/r2E012HRhkz74uaEGodcLAMF5U6gdbpXEi0vxErSZTviAMw+qPKnSe1Alya44F+90pEaH3DOQq1Tlz8VCk0SAb1uQqpQH6DLTbVJTBm/1K9rRVSt3Opzlod6kQf4lp6e4EeVFlCl4lOi3onWAvpVDysBe9naroFtop7l709qaSd9FakX04df++gh1DAufDqfu3pA0ubKlVVYxJU7Y07io9zuyEF/JFFHYB0Ik/i6wEUdgFIM8SsvPmVnc815XqKFA/dDm/nz3KxIKySq1vPOJeat6o+8HKc2oSGVBrafuYQZfKLJR2lq1P6Nu2lft++2EtLEO5z7cP6c8aHOWwVtp3aCqluf0GpbGOi8OHuIhCN9QsLg4PKpk5OJutGD5d4mb/xdt4xdmoXYlsm8rEzVfLRi2tS/MNcqA6Mm/oSuINmO9vr7whF6mcg7gZ1/uxIU1qc9uRIprFp2+SfTOvvkjCIPdsZ6o038rOTHPgaQA+zcYcY/D+XNRlUGyRWagqyFvNP/XU2DNPdWbs55xG4tTZponucCReRM1ZY7K4ihO0cWxy3v/GRbSXamclOuE4CPlmX3wiyv/wgxw6fH8tCrkaGCgM46pB8ProCexna/C6gdWu/rE0Gw9dcv64B+HqoZW0Qh6wBv2UZqL9prbVYMMsAuuxS2dm0g+ntmPxBf1waruUt+BnTC2xMmExxUTKSePHuZjL1hkcsM/M+EHkL0LdORan/NaoBX6oUsyaFB0scK8f+vTuwylHCOswb9X39OXYvU6TH0N/g9qbgTjZqkxVh2sq2+wu5pXz2cM2y+OHOk5HkGfh32T2Nxk9ilTm5SYXa6LP4pXJ8yhe56DJRCqDg/wLtqoDnH4U5++Tx4s0DeAZyYF6Hgd1BA/aqzRWuwDls1ipNW0ORdJGTeqoHnjWeSoj2CcbYWRNDO81o6FRN6LERb5KRf/2YjLaSxU9aaJ75wyFRR0eRrKybX1Lfk6wMOdva8nPXSz5uaMlP7ey5BNVK0t+7tGSE4hQSz7hsbbkMA2xFZzbW3JYn2TJz20tOabNsuTn7pYc46FY8nNvlpxGw7DkOjQPlhzmJFvycxdLPrVtfUsu1NkreAN6HebNLHlPjm/J6/zYzwGN5amzP1PlyfUih3j79OH0Wcj9I9Jg+wzqkhEV8+H02MT0SDO+356Bw7nGHue5eAwktv1hDLJVcYibHogEd3Fynw3WU5DuV4eUx0mRDVZPaKNonPEqCsWrSNUjBetiuxVZZvMBZZWKepYgq1Lx+y2/inAvUvS+vjHWoYxGvq4P51ilscpcnK7zIC94HzJp4mZNXGeiPwuRnuovSGcpY8k2ljPFsxQvdPU6tBfV3zNOPVUxfmTWdbLfy30RpwM2B1mHeateri/H7uWa/Nj3cmN5ai83VdZcr1sHoix6DTiq2E/VnzjLXwiVsgQiSZBGN0BRBqCJ4kU/jeMdT76O4axeLSpfilCkanG5Dv37y9OavuthAFcluGsSrL/Xj5cni40Pmprca7d4qZUh3qrNdmLsFlvlxG2k35N3HOfjNNgof8xiO8YHSWijox6KfmTkhYU0wu2hOI1vSST00a0Gy31sO2bst9u1PBaHIIe/WxPorVrvQI/dgNss2fe5EwBqp6vRtjkvOdRnHpnEGAinJof6jIOTurLv17Y8eMJaZh3mzepaT45f1er8ONS0kTy5ok2UJ/vWxaF8DCSsgxK3gQyA1Ob1Jpms+oG5BwTnvC6ODyK92dW8ccrji8ro8S7sR5+H6zJOF4fDKo4Proi7OA0Oh6ROyaqe9VtV8XCUiEEpg7xZm+rU+E2qyoxDixqKkxvUWNfKbve0uVYb1KfY7J42x2JPyrtXs+7UPYygahnirepVJ8auVlVO7GvVUJpaqcaq0+vHHg7iKhdHqnZ5+djDQcgqjkeCDD3bZMCgP3pCZyFtAjTxsHb+TepFv/YTh9y9cG/WEkaS/PbQy5uhVTyoi1h5FE0UP/roxS1T/TqKF32KVdB8BrJtwAkyyuBswtCL5YcCdy+mDE0cW4LhPIeqVv11nss4Xcto397NbVFL+ys+uzjNyuQ4M5kE7r3IPwXqucGtWGa5POJXjE5Y9yLfB+rNwK0Q/SR88ann1GS0/6amcZEHRXRsWRX92Eb3xdUL9eH0OciYhmg/mN98OD1WKcxCR1nWQwE5q3psRni4grDRRigEJpmtqhvHbPtV9XhmlQJ37ppAV747kz2ugu1TsCcf5Zwg1skkVTIzcKZxHuTl1evYIzsTtiqqulad+rwOl+c+ehap3Enkej6YrOgn4oVRWSluH7r39sVUWosorAZai+xSiFVwQla4tEBBFFb9apDthEjqRPwzWlf+AeQMdb+kdClA7+X2Esj8kv74wYRKxd/xXzcweG36scu3IAr24ojNXWhj/BvGMyNxl5FNL+cG3zbg+Y9jNkt/EefijT00RWYxCsGpetX0jzh9ojfBMWAvoZcmIXfW4VleyyHCGNV1bKAn/bV7j/xidFnZTTJ02WSUi3QXbEfIhmg2DXbwjY/B67pIksPJBeDsGLxmTSp4cZmKwIRYlJM9vUtD3Fir5MJBcnNB38an4JA7Fm6VVNomNRds+Wii52IuX1J8m7Iu8Qc3jLlyRwHxNjEH4Ppuiv46nSt20k9yVvj72ytv1EUqZ8T1RDoTZN22P4ooPsoo6LtPNrB1cuEgubmgr4uj2m7mBznqJeYduHrV9UORlk/AtefgnbirNB/qNNsz8PPhX6o7gXzz75pEfWeg7/l8Gr/PtUj3qNHTRnL2egL9E65shjOLV1z1xWAAjWneIUDYpcDfSYah6r9u+eoZ79u2Uf5tX3ZI4PZduwLw9VVHdH6+qQ5T/0W7Z9t4n3UY79/2bTUYbh94VB6+vrKO08+nNgKPvvf4lT7i59ZFc/7a4fCVMgv1M8a7ZabMO39bM53jp0Vw+1/2KkqKfDLZq3aAXEWRQB0IJLp7uw5DqVIMDmp5UqTZ4KVZtJApeGedRlZpBGMNvI5gxWjI3q6ewB7kykummuntYJTybFnJ1Fh+hoxU6b5ZNnLN/L0LPnc+n47db8W/v+SfRRDi7bUN6Nwyn2TIEzt7Ih767TKjz+xq8NwVBjEM7ZztVAxeZ6SLnrUx8RIY5dCIksWHZ5sCOOuiOsD0v8n/qPOupddInLSeRHD+MsR+Vy+s7XFNJTLNrL5Qbnvvua6CVF3lLPA+Sx/LvSdV70leDBeT+ARnZTKMVSVDGRggxfT5ZQtG5ovMPMSIMIsMwZEnjnlYxNoPkXGaAA+u6sNd2NoUfKPl2kd/LQj57wAzQWMfkPGMgPWllIODAjaMw3Q8YJ7//F//z7tfu60Ii4csT4NtLporni+6jQWDYa26dXUIjkWdayLDksRmLgMtHRN556LLOLosoqETbZ2DQbK7Ltn5clINA53J22S8kk4qcxVhcG+LhrgL9YZVdCRqVRt72TPwqBtxemOl8SZcApdKoTdQ4+zAJfCVG0G3/T2aBKQqEnV3pp5iUlWU77ZIZPmY7k2Sg99uHNaDAyoHF2NTNc+CRJKvv55mEXKHb9WYJsttkPI4S9vY/rmyJI4yq7IqwdrobmTjCvRB7qWyTcckSGUWR8vXBEDUhHauRBvxp4XiWRUNLwxdBk0ke6jemEn2xNeOWSRQTYFQiG8gM1gkZHjNKMSpeBZJtomKw8EOp43rl+lgV2cO/uvMwbLOHGaoM5Flo45maNWRZQWOvNTgicGN44MIIrLF1QSf2+SaJOk2V5dHO6NrZqFaXR4L2IQgGGIb4tDA9dYMQ623LBbc9AJAHNvLoYKNrxmIan15LJZ1h2x/OTSIATbTkC0wi8a2KpNtMEwzNsL100+lo1xtjNnv0/ImHJUQbJHRuM7m+SGOD5sgCp0hznopEfb3oYUC8cbQ7AoHl7ob0ZZ2eGDEmpV+XoRDyq6o6j8Lt6pSJ+E+G5DuC3UUBpqDYMGc9VP0UM5NWZm2IMksl9HWqW4M8HsJzk+/k4ccnOHksbfJzU+epCJUc8FQ98mD76c4C79VM71x/jo3HnZf+WqkN+lsbfTGuJXHVxNt4P23UDO7nwbakPtun2Zub82zQZ+hdQ7o2Y3zwtUjKBP4v6Npdii+W2ZVSjM2zB6633YJkrs3yx63z1YJUntplD1wz21yzI42SYthl6/RFnekNRgF2A+ukFHKJopZjWlIVUWegYo3yhtC2Q7sEKbRyQEuFuPUgB3Zptu7tsnlUWR5cLSu6GdwmrPlQd1TvsmKXf+Kc0v0YVL+ib0W95uVs8w25eXLLIM+QO2nMAtf/f3iF3gnDUo5SmcW1iSVxyCFtmegmF0S/gnV7pRNb3vK5hnd4QLzAgn6py+/3CZANwvByONU/HOm9S5CETrDapPyT5w157usQfspzMjX74CS+CC39k0NTtN/Hsoz8JvBnm8u8iCJuQizPIjCILX3TSfJeCE1uPKDh+c/BIcg2jK8eij2Gzn4KALb1weLxMntJ7AyRwBWrJTBAAGVNy6wIQ2OtBkeHLZN6Q14N8/v/CFXib0J9blP6vPZqVXYTQ5vY6Vj91N7I25f9WSU4JvR+6kvowRnpZfZZpfGfwmCm4aT9xObm5o8LCJhW4yQbLgnYxvGsB7PB5j6vylfnlo0JvBvy52XFo8JvG3uyAN4i4xZjOV95mmu2jhI/t+Us3lq4iD5WXN2HL+l45AN1tM6DszM6SMc3HomyYY+y+M02IuN9DKmHKQ2Kzd3UgFnt59fIPKPpxo+qnep1RniydlK5IgvHNF94b5OdUU4FUhAOWvS4x0YRErH1xFfUgbsD/ja5QI93kuhZhzuJVOOq3DzvMFNeqm7J+omvRYyfwSzQk3CplpPcPsNtXtjFJ/XgyPOPaVHUKfP5iFlYDeRRyKkzuFZEoLTdyRA4sydHR86aUdBZMzXWVJSpo9IpLyZIzvah0O8fdo8Crl/dC3ZUVJzEYsoT0+bpgvZyHCT5a711pTmbHl4FlG+kVEooM0TJPJBSnPx7oNssxNiU942SHDUKeSmNOfKA2WKjsLNm52zZq2Lxx22S2hG2v5YNyu2W/fqYUx0rlwQBs4UbtaY2Y6UOlym4PJHyk7Mahm5XCb3xD1I783YN0Gzu9V3LgYpz5Uf0oQFBZ85V+FGm4pdEYUbL06gKc258kCeaqHAW8yyWFIzV1hI8NbrKu55wGfkuTngzMNb8ruPI/yPIMBJgeYxd+aUwCjam04I6LQtpwPGufcwGaCns5oKoNLRJwL0cDbTAEQ2/vBai+gyuCaS1i/pcB01Le40rXmYQ7GVx+DgBttLZB5KuY2jTfUUlz1lL5F5KK12KeDcjtsTvOSE2ZPS8mHdmRJzcQxe5bE4wku8OPcgmXlIka3IOCN5I7INXZLG6pJ75wY4TGce1upV0nZUFaeb8hm/zWMQhQdknxyeA0rqb5uvJ3GaK1Nt0rPmyLFx9lOZifN0fIihW68IkE0S8xDaDTa1pK5DTTPxeAjRvVVVXzksssu4XMf8Ik7lWwxARvDI7iv6Rf5YNoH6euPGEwMnsohcZ2DieJETyo5S8BexjDL1CA29uIdRnAt5W20GUQsxZR3aVF76Q70fxBbpDE+XU8ijcqIVbfNEZvaHzB9vXiIRlg/oZpyyBtPwVvjbVqc6kJk9SrV/cvMsxYs30DOiGu+7wIVM+VC9SJdpfOySpH8nOAlvn6kyzW2ZZXDPycI7gzU43wQpT+YnsfoI/9cV+9wFTSjai8dARndxcp+JtHerPqWAwajOxVxkIu0PChGbj8Oc6VIkFSxcRnDxttWc2J1qIsxgz/HKauLQmGtOHdWVB1yAwK5QSnFi0f+9ngoNz5fXgpcl5VOUpuWmMVD0b6CJ9++zxQiTD3MMFBdYzB/FoVz2Ddd58CSjfbf8QihrJLJzgYdN+mooqASqe0VKBXeyMyR5Urlj5QcW/lJtoqIUdC+gc6GWO7eQ4hvrnbWRSIXSzxdYAIaVP0KJQDGdi2hk+aiVDmU6gxImlSxYYPSibuZHuAU9iOe7mAkboXCecRGztkXBxQQWb3lHBaE4u3DeuiPa5qap9pk+AVIx9bJLpyNtX6JxMvcrmYh1H7I4Poj0Zlcb9jglfVV9JOdPHBXH+iqtTdgkvUlEuklicC4YQTrD0qWVqKGkwOK9eVBrL8ThySiwtxYTl+kirUUnfjZNgVRU41yDRbRKY7XlNE7XeZAXlOqni+FcWEmTqPKO8gIpLSPCmSYdUplpiwEsuDu1XnSViyN1NlkTwbnYqkUrqRK1Ez8bpkAqK13OiUXFcAUMkTwVWdNTk4tN0/lPU2IWH6PHL4datQtGWSmahncvuHK82HmR6EDUwHCmT4hWdtNiwIuN2j4HYT2P38saQisxQycwSYdeYKRmmsb547v330Uqd/UB1i/iRHi+EY7oviR5SB6DzR5a7ScQnPWSIZQbXBamQ2YiDzZ78AsTQLtU5uIMxcEHaC+ZuUj3wfEYbIKHrfv3HyU1L7Fz2faS8Ug6bvJXUVLk34LTA9S8u0A+DlZf0d9cHQd13ysNPg2mlSO//DfJl4kBfPXPwEB88Y/BAH9wpxdWyRTgZa8GCOL1rnQG9HU/EwjjZT8yDfiqnwGE+KIfg8GiblBf8iNTwK/4GSioL/jRKWyqKPXlPoBibDR/z+Lo4SLIcthg9oM5G8t1nspoz1E7y5ooeOYHOcIyTuwvpoHde4xtAD6pbpA8a+JRC4JUG7dxlAcyEiFsOc1Mw/hzsEGDaYyLNnxmMIEmxEhDtCEMDrDHN3IQ+3wWB2TZARCabWeQPAbZ5gm8LcpI00WdgyjbBKAzgGE18Wdii1yKrInvlc3OEvm3P7gfZ4ZheHIMItCXM8IQvTkWh1Wrp3p0DBLYpzOSUL06DoldtaV6diDJ2MX5Ik4HkWUXcbST+6J6BYIw6QZFc3Z7jsHrZhsfj1JtVhHJ0+bhlIOrvSjNmTFJvDjBEgJyIF6TzWOcyr/UvSpi686vSXBO+jwNNjspDqGn4telOB+/zLLNc3DwxD5ObT7uHy/55lEEoUg3D+9/8YRvSHS+XKgrHYO8SEVWrrPnr5DBo+VBm+Q8OYifRZrKUGyCIlSf3e0D6FKbhztPAxmpjX0vj0Icsk1SPMBuLg5vTNJbDsYdEjYf7G0q+Fv8LBbRaZ2nBfh+6iCcc9/2HKQyAG/WmeqddZHwYh9my5z96+IoUrmlzm7ogs88I26UJI+StXm0GicDLMSRMpMFagIgDM1vZtGA7ioAQ/RXeSzoSAsCYoy1WFTgaAsAIo63mCyWdYc65mLRwKMugIY67uLR2FZl6tgLoRkb4VUaJyLNT9+DQwF9tUE4H53fehscghRybOoQzjb+Qe4l2N/1hc7a0HhRN1kw6KrD8CKAPvdQuA3urHx5iANyhnd1YGfVq49USeI9gpge/aN6+qI/1LwGVbMJ7KwaVS2aqtsFd1ZGl8AGwozVL0SXcoHSQJp3NdJUfWKcyqxQPVNN6JkdU5Mi2S/VZdDKLTWTEL1SHgnURUEoNL+CwyIP8smOponpmQfsaMwwxA6HQ5KKPXjfOUDTRPVMhLrsABLDY+cwWVefWWoPOHwAWPy3cXjwAKH4LxV46GBmoY4cWCz2Bieax+LAQxkIx7/NiRyMTjST1YnsP9g838uhiGYqoUwe5SGALqEFmLrIfqnsi2meUnIpJH9lNHaRuzM8+AXQk7Du7jF867NekH7V8zRzxioM3u9s4qBe6kznAG9yNmEQr28mU4RiG4ciRLY2GWiGkWegekamuBCuJrpHMqty8l4+/btM+Tij2D65WBcRm/AsLx4mU76kMhcbdfXB9jGI1CMZyGtPBlBjOm6sWrPdnLqkmu5x+Dcx31pRpgmfZNTBjBt4WKaczIObcwMOx6RTaWimQQ/ENQxUJnWLag4/DgBQ9WJ75ip7CQeyQXx3tknzbyZKqXOb+ggzT28CouQZTkNOrSY5QR7iPCebB6xAMBCx7vCIwNE+CEQc73N50Ek9GIoxr8ckAyfTQCjifBqbx7ouUWfVmETwxBpIRJ1b4xLZV2/qfBZK1OHUl73e57K39e8Yh8VBZP/Z/1FjiLv03vfHQJlIZXCQf3VVoXkGdZRiLyhs5geQWlURnv/667v/qgOqi4E/91xjg742kivJToQiVdcG1nsCeUhwbGe2ND5+GOyyNWE0AX0oUrLtJ39PNkWujeRKciwOufwiTjwUfSxXlkxG+4NgwxiiudLkMakG1sHc1T6L19HmAqNiG9Sjqro3Pi7yVSp2Ei1yUzwrnt/GNl493yCiXF1bEaffR3tzRVQcWxpdSND+v3vfiT1keVpNgzATPwsGUcHMavOi5VlWRp7LItponji+qbZtCVPahXmIvvQmBjk00Nwgm+Q61kXhckVx/dhJMErFE+W6MYhcsMqSupdYr0VXr7JcRc/BQYa3IsimrU0ThNqGr64vbm5vlxd3m+v7bx+Wt5uby82Hf94t11SNMxlt4zRVb3FF5V2Sm3iHHMXRZslA933x9erj5vPyH5uLz4tbDlX5p82jeFVzn6lPmtXi48er60+b9d3t1cXd9XLNx0qCMFTnT9T2tm0eQa8y2vP9a3l7w/qQQ7a/RBp7+Ypfl4uWZ/OPze3yf+6vbpcfyWAHEbRAm9dNKv4sZCrMM7YMspvrT5vLm9tvLdTm/vrrcr3erFfLi6vFVzpjHO03uzg9tnibIlLO5iZLxFYGQJ9Opr27udkoYjJUHscbBeZJe/355vaOJZ49xql59gFR79nA6LQqHg5y+0WcDN7MNATVAho6akOCuLegYdXqXo7Gf1SAdtz41MZzJGECeNNdi21y/uv7p3dU5awXwY92ytVOfWgfHj9mwfoxON+8O/+NXO7Z4THMgqwXzYZj0KrWzelTY6sah3BuVdoEKa1qwsqry3pdQl2m6QJ1Wa9MqstEbaw+GQjo9YnG8Yd4UG7txD01AbyIh6AOb6Pcq8nqTvlFIu/6K2S1eO8nat29XNxfLCcd3Tihs11QbAXQu/Wh9Dr3X79e33xc4krF4RCphS97ravrj8t/LG9RqXKDgACGUqjSarlaEYQSkSRuOrc33yk6qTqpztXp6tZHkcpnsd4+iuO4bvV/otatKs6ikCGW2FlY/iUogINNAzhAr7q6vva31OzeJzpAdUt+/aiomr3dz0JU/cGWKW5ie6ZaC2FdTpkAxihUoluRxUW6FcM3WolIaR25mSxpI7OYurawTNRPaXC4EGle3Ypr8ByAkNSW8q+nVRrHO2bCZ389JXU0fSahPIB5RkYgxnBuHhOcLOo3menBvCJ+oTGcp7za+Yhmem1eXxNZ3d6xHr6MUbOMfibPiZcPslASOwuaoIbsjAH1JalCTWyUXlC0YV0Ur6JPabAVK5HKmKYro72KkTQx2OrdV/ssXqGZ0PHP9FlQeJ5Rmy5jjnGCDVJ8XV5/uvvMQjiIaJ8/Ouqb5nj00vj8DqD623jAtkzTOL0IcrGP0/Gsuy4IuT2urjbL29ubsaNoTPMsSORGqD8b86VF1rfOf9wtb68XXzd8DPGaizQKDhufPE0NW199ul7c3d+Ohx5mnKaitfdV+aS5W9xZkOTQw2F0ivVyvb66ud4s/7HSzEqbOTKRqY3fG8yq0knur79c3/xxTSYooqcofjEPnxFlfRtUDuehUGb4TiYAyiActTVeLL5+3axulxeflxdfWImfbYPDYZOkYvsotk+kLA9zouX5/ebqerO+X61ubu82n25v7lc8qB+xjDZZkSRxmm/2aVyY7wpgkt0u7pabr1ffru42y39cLJcfwZqpQVNTxJuDPMp8I163QoTEKkphWy7u7z4vr++uLuCGq8MSvSVbWvNlE23ur9ewbUPBNkWUUY0cie/qen23uL67sigwGWV5EOXSY3mtl7ffl7doj6TByUT6LFJGh0Sgwe2eBoRj/CgMq4+q5qhlwOX6brNa3C6+jb1AjCgJVc1R638iyzdJkAbA428UPr2F1sxyjn8me0frf15fbFa3NzeXm8vl3cXnzeXi6itoarqZtSA7RdtNOdre7ES+fdzsAnkgmhnzvN5y9Xn5bXm7+Lr5svznZrW4uiV0zR2VaEaB6szfJglkyuqhKVyt97T5vry9ulQ2RzkQjKLrIFt/Sh0kax8a8lOSan55oyaYNxc315dXnzZfb26+3K/QZj+ceN6omWf1nMBO7jeHOH4qEkbzp9D9/seXtQvbj5enbB6ym7vPkylmjCbOH4H5Zi7BoIapBuFQToMaplqHxzJrfPmyqf5z8/nm9upfN5BJ7y85VA592UxPzV3Qnnh+/+Nuc7n8uFT+1MfN1Xq9ub65a1w+YmttANV9w+3qe3l5chTnjfvn3Fr7xA3n7fLi5tP11b8sQBu8VGzjfST/8sr3+x9fSr7Lm/trPtqPl6cSbRcXwLlLPtX6arw1BmfJpHl3DI+g6kVte4R281XZnfrvCwBKZVXsPqYGVpkV39/27g/1aTer+w9fry4ccPMX9bnVZc8HuZ2T1LUS1KD+a4Fqt2w/TzVXj/7dmKEzz1Y0nUV25ird/rXaqUjvXZUNSYJU7fv10o9+W/xj1IdSxv8dT/2iQq8j5Q3/sXX9jRo6Xl0sNx8WH5vREgmsWu/fqPGj3IrNQxA2IyW/XFfX9ZQr/RuO0GRUz7z6+J4jOrpDOYLy4VVWtp9nOysT78tOuvWRc/WN1U4S+5pd7jCZo2YPuWxq9hDNb80e0jFq9hDKR83mzZZ2KLaTpGaSbm6AM2nRzQL4mavoKO7+uVI1p3RPmCjqxPKmdkkcee5uF1fXqmP94/Ny+XXdm0H5drVWPS4JbfxqR4d6lFkGXRPsSmlrsczE/q0YPovacXEmT407476Ik34qkjMDufyo2wnSTwTd99Fw6Bi/yaPQQDZ/plJ+uBjPBQ9SOHsAnq1qEUwpl/Vs+XFzd7u4Xi8uVB3DxMqKJMJN7yIqB/3vV8s/Npf31zTpZyleNs2pVkvV39eI0I+Ml3bvi6uHYh7kQebjbQS9X8jrlTerfyKpnG3jxHzar0+j3+V3ezNec5wohGlsXldEFb4s0SxA5xXR9Nd3N5O1tolClsfAappeY/hNL+sa911m0vh5p4HIe75vr5YTlxhI8myXSgH4wwZkgyd19X26LgiJJ9UNIH7Uy2kVjng5f2Kv3X3Xa5G/xOnTSLv+K7mN3q/vbr4BaZxtiyyPj0bghkLfPpffrydnAQaph+I5Ao4BgKl/vbmYnDEcJH6It8DRQTDtb4urawT9GMjImv16eXe9gFKPRB4FdmmvPy+/fvgnQp89isPDyZr/brm+QxRykeW89Lu6XV/S0+24He8wnQZw2z1rSA91nzSgrBNOJl38gBNTeXJWD1EGjuqByv1vGG9FlmmX3Ae/kdfbLy5u7q/Vuo7qNavhxOr25mK5Xk9G9FOBs3of/yYVqj+txg5JEwzIbD8XIFfPBbXh6t+L6oXr4/Jycf913EY1BKHYBQV40Rmqtfy+vL5bc7ItnkWUZ35yenl//enqw9flZrFeL+84FLsi2kt1Xa5Szv3Q3Hz4XV0JwaCoTr/4UV/fLb4sOeJZHjwJP9p3N1+W15vv5xz5PH4S0eb53A/B/Xp5a9sQi0y9IeulFXZW8DY+6MbQzZ/JHnazpwFKp9utYARucbQq5UTX4m5SWEOVck4LvDJGo9KVyHqbyiS/68p5ke6Lo4hyQ1ePhif3H9rjX7Tkz7DjX3iu9DMIcXywA3qoYnqluXp3/psdjaxieqZ5bwvz3jvL+a+2MFVMvzR/P7eEKSP6ZXn/iyVLGdEvi23t9V53182FneNDXkSirB/fK9m9dRsvZmjj97ZtvPDfxu+t23gxQxu/t23jhf82fm/bxgv/bfzetvb6r7u/fRfb6f17ZJ7nJrY7Vc+7knu1Zqa9cmHwm9t8yTQpdKpkSKafdTPf/agRJN32SFWdXldoUoTm+wlqptsRNXL4fYgmPUN9uIqSYnwcfRrAY83o0uNVjwoUnklbbsMsIIq302mijmTB0CvT4iGM1fRvd+p6FR/kdvJJTeHIo774cIhfso9lIqzEz3ZV1LCJasiwMSeG0+uhSEQUismlBgiNHES0Z+m+Qd8u4vf1IqHdajwlcbT6Y/nR1w8hVsFJjHsgEtBOiKSO65GotKWL/bSCkJhK+xrsoVpiT+Xw8Ug9jRVZ1RusVdOw+opVF5E18V3JtO1r+Sq2RfmomGGGBgxLblvHZLIqjSd8JupoaM41udBzRHl6uux2aHB5VHR0g4cFV+UO8oGyJp4biaFm5GlwUR5uo1SNSWBq3fg+XrwiJHv2bF7BQrKA5PoqikS6Ck6HOAjxbOtC+8i3MV1ixrW5QHJOzrRlfoltT5trdsMz533cc1THnDgwxy6aH446EBMjaWP5ocBskBaCboCYtfFWZEkcZbrlFUMo8o7FQ7x9WibyEO8LTtJnDyqi6CKiWR7kwczSvCfHZjl2ET2wfBKRyCTQ7qcU+zaKB/2ViML+CyUE/aSN4kFf3a0lLtQdKkksIRd3ylFeuLPtR/XAc59BXuMUoshoXiKu/L23BkiWxxcOcQatJcA7JG5P1IysekkQE28HVpTtxbo8IOMqC6JuWOXOpC3/P+L0SaTLckfHMiqOZrBxSLJnUPqmMo4uZSSzR6bAmWii75roaN4nedLveBi7z5MFH5St901El8RcfKoImwMTbpiqNOGjFy60akjsDKrGxfMyAn0AhY7UDwBcvdZ4SsRdsF8FaSZS0003+kDUNlhfR6jfRgEk3ZzMxrZQGLIAsXwrH2C8Do7i4jFQT2JN+0Ocq3rFUSW87SXijXGdp8U2d2TMykRmY6yj8LnUMbc8ANwrBsu36hyaCtAsdTGA6lNsCijoYs9CdXGIM0bT0qFt6yTc+QZgaiPpN5kdg3w76SMBwAGZSuPYpeFOeB+J10RscxFexMfjZAwDcBVtzG0d0yeNGs2kcsuzkz2mfRUffBncjmyVqlO18ln0Py7H4naQSZNU/xv7scEdb2XiLuP0GHCabEdZmbddk4BPNpeG2wHO03Y7ymonwaQtW7FW+wombdoz8R+PMhdZEmyturWO9qVNx0PPNvGHTCPD4a9uO0h1iaH7Rcd81N2hWjFwLyhJqbaFFLF9G9RBT7PTVCsG7islKo03dRmEzDu4aDrT3WN6IWivGE1psjNMLwTsA6PpTHZ96XWAPV40HVpNcKwHt2InUhFtDfZ/KJb2Ajtoqv0kJrM4miRvQrqolZ0oSa0J6aCm2Ueq1QJ3jRKVSA0L2hFK0yG2YHC3J02J1oKhnZw0HVoLhnZp0nRoNcGxHmh3W2qVkJ2VZrXOf/jXU6LfStT9QPUaPqVx/jipw6N0zvZtKD10D6inct57x61+FVyE9XNHrWCd4H9OQoA5+PXdeZv2No4qm9ErfzjVs2EUfZ6myL2s/XzePRQf6B9wQhCILzfRKbrNM2oadbxOjdEMYqMr1WSqpHmciApSRQCf2aZqq26LKluH9aA43d9MkJbRPmsi8RnOf/6la2mZyEc9O6YvcqSDp2vLfaRbAiKUAGXxx5bjD5k/6h+l54G9yPyR+Cw9h9QJbwam8gKr7nlOKk0VTf+KTJ6Ff5PZ32T0KFJZrSE5cy3UJfWWcEEd1zOh+hAMW6eCjy2dFw71RmH55F+1UTnIH6lIKmbYxkyC0ctT3uhWIi0nnuNIhDxzpWInvdi+bFdJ1V4ewaKpYs32JTuqRTRZ4GLxBZF2ncsLaTnzUt1cRCLrhZ+JpHlYs44n4+ibyLJgz0ZsXLUuoWObkIXHoHGL61v5MN94GAx28S08VE3yXDd1lBGjrxryIArzGjlPuX2e44s4rQJptjo6jDbykzglVWQfTD9eWF/8rArvQ7l9qZkujj3uzNMfPANLkgdfgLVQv0lXaXyUmdkoGDHiNGmjeuFBx0paFPKAiUZBG8PoSHgDGRpNIUNugRQy9FcahQy/Bweu/jNwsxtPv3+Z7Bdx+hxkZldOB9OP/yROjwGwv4xHVl9/PnrRlG5CsIdNUZpBn/+wze7iD6dc8Hq3h22Wxw91NJ4bwuD6LF75VI9lpDmYyo2+w6Dljtn+xZsUzDKdp+qH2k147tLx8VX3Il9Ep5WVXdyLPIhOHqzjmKg+h4v5kgam2khSHUgalYwkz4WoI3jRzsYPVZMAMuw6dB5FeyUJr8fqxfJCAc04mrpMj9qUuTcTBmcCzoqIPs1FQORPe9GZ3UHnosvjdZ72z5hQgPI4ayLN0Zs0TKrU4iJfpWIned1dA/hSpZA0KcxBS53bNPpShglOb0TwrCYBazq1ac/2Eki1cW6lRjuXor9tkwKmYleDpHi3E9CGTR5Vmdbvf3xhwZSRfryY35fmMSRBmsvg8FHYdTx19FB46IF080mTW2PGUE0Ar4usg0RZa6wtLzY0Nrv3Q/HW78OnrDTarEn9obDtnD5GQRjgDEEchjYkFmhQoyGxGc5gHNtUBLn4IPNjkFArZRnloYniVjP2IleXzlDLYS9yWQd31m37i+xW/FmA7vcEou0qsrSL60aEW8Ehhd7s+agTqIs0BLF2jqgcNLdID+XmEOGE9zLKf1ukaUA1bnlcqChBHcUvD9U1GyK5rjozqWD3DESzW3PW9YyaDh+fI2lDeO3yh6my+vwO2W3VaoTAXLDSUbC6/7G8pv+30iV0+CNphx6fRgN1+ToWmz4fJcG7mhEK3cVGtdHOZSRt3buQSWjdiwHLrX8hMBI6mAmaQw+DElG7mBEUd+DP5YA7FRiGNtzX2lpNN4IXTRvCazcyTJXVjXTIpiW04FBQ83PWBOZrco33SNjBeNNoIOOtY7Ex3igJbrxHKHTjjWqjxnskbW28ySQ0423AcjPeBEaC8Z6gORhvlCgkzLWNgDjza1o70jeRpr1ZPk8rsM8ouJ1MsNnoZb2HhblpxWmXisW2FJuVPfpSnuPandVine/VOT/LcV7W3xwW3BzXh6wWhHysANkv+VjuWcd2qjM0KPvRGbvQmcrQrm7iXm5rRWjHNnufNoPCvBsb3YONWOFpl9j0oNAGa1NIn92mIXVOR6rJiqEDao7IXUW7mAvUxJVVXE9EcSr3MgoO2P4kmK1JhbpPiUBJHhnBZDYjJCs67UiJwMYaMXHJAN8XRiN4wFwW80gKRuGPqGzJkJEVDdNyhMVlBsc1MClpfEOxIxqjDvda9c9ezXcvSZbNrkkNZnFwMzEkCd5ETNNakIRcVS5v7m9JQru4cC090/ZujRq2n5umd3P9abO+u726/mTcWq7TjqP9pmq16L5yEsfN9ZIkHEd4y4OV7j7fLmla+WMqnNX+uKFpveCeCaz0r+UtTeovkVpocZ2KvqKDJ0HggNyHCYWNzwAziD+L4EArhzaoS9nLbJ2IrdQdktFIyixrQ7uo4l1mX5XeSxJVL+NU/xwEiWIXp7QHIfhU1SMI1ljVcwieuFA3cWBwdL6hvebXmKl7iL1q0xxQE4jZ87SnWj/GqXH2WkuS1TG8qdsXSokyR6nYI/mlgRZbtBCGlRa+NmX4MXCTGWMOWFnNedH82Cqgq5b64ltaE1DBsya4D12iNWp0nW1Rp2uR62jvJe8yK48VEv2C5zos1+fUDF0paweDQF6HsZOEWYPZAbu9uzuFcHB6yUyQ62sgsnGAKTwyGz+piAPJDHtGkUegfdmRgkF60tGCBVgCMXMQ1kKIDNPXhSkQ+EPDHAq8s5sy0Ds8CgHqFk8BrCdOOTw0V8gM5zZdSiGluCpTPo7DYqDAOpne5CoJrBd+tq5nrGHdC/UzZ9pn0gVBl85hyF5K5HV1Nm0V7Uo9+Ky984AEWgWSXSJeGUnLiyAga5GRSZcNlhg/yr3IzB4mSDlcZgyblFxpXdylCaMnz4lKSnWi9Jyu/hSBkudaTTD1XtYsnGwHTANr9MXmI6Z6SCZa1vlTW1KeM6dB1ft1M7DynIapibLyHghcLEdwguXFJ2RQ8t1DI7I/T5HAz3UaJ9Qm/3EG1sEryixI8CVlRi+POLocW1qHnc3B7adv7dw2GQK3M2+eiFZugDSI640oY/nXAyA7h3rK4+JcDYA8OVYUQqpTNeVzdagQOp4zNcDz40ihfGwnagTpzYGikVI9Eh2lqzOCEvKcphGiH4cJYeR1lkP7YuUoITwsJ2mA48VBItLxnSMtqj/HCOHmOkUDWl8OEcJIdoYGcGxHSNPfIk4Q2yD2I8zmDk1ErH2iQf78OEZTOEvviMLGc5GmaHZ+koHMxVmaonnymMisVLfJQOrqO1E4eQ7UFNSPF0UjdbccPv0pBjPVYzHyunotNFaee6WD9eNjUWh5HbDGSll5WxQylss1BfPid3E4+c6XGdqfB0bJAdcNm3L78sUotGSHbIrJ9spM/TzFNWO1f28XYmECbu4Yejfm5kl7OSZKNYztj6q7ZNACahDZicnZ/XK6XcuWkeV2Ody5ZcFn4W61gB5dLZDQzs3qYfp1sXBWK4vl1bUCGS3cqh6kR5fK7lo43NzYu1JWl8WhQP5cKPcr5Miwnl0ngNzKbWp5vbpMACXPXWrx7Fwl4Go3TZTrWLvhjQKrjzqbCwXIWTtUhtz7cRogYE8uhAU/1aFA6V3dCx47z9mA4P24Hlx6tiMCZ8GbW2KVD2r/T8iDqzPA5ec5MHAG/LgzvBzwujuI387V4dGyHB8I1osbZMfOd4ooGfHnIvFyxXWYoLz4cp94OSA7UxA627VCGTFHi2d42tCzuVNDBWsPqsuWn+XBEZbl2iBKxVsYHEHZrQrqmFzcyxGUJ4+SRkl1InWMrn4jSshzFUeIfrxDAiPbIZyAevMBqbR2xsuXp0egdLGx3vw5lJPXAY9tj5XXhjKxHLURkhffjEzId8cMuP48MJSd63SNiH35WSgn2bUaAbK9KW3/PHWggKdsRgF8ukk2D9mMeQ0FjNywy31AhqiKOxYeno/hsADug/PjMUQOtEGSno7xQYKZXueHZJgcJAPr9xkZMiF+N46XR2SIPMQbwhlPyMxABd4hzn1QxpJPY9rX4s9CRFtxXRwfhNEUD0P5NPKalDmWfoQPHy/nMHRRfOgneZxdxNFOGq2LlkFF2zbRPHBsi1RFY3/rszpi1ET0wHIIsvw+2sbHo4xyEfKZVAJFl4BXtnj7xEKpwntQPgav8lgcr6LLg9w/smpsHVVGuyaqH54/ApnfSfOTHgYW9dR0LvHnPWgc2UGIhEtRRnJiGI5rI5nDvooOYhDLA0UkXu2N9pmKndV/d2wxQzfuFG0f0zhiFs4wmgeOIgmBJxZ0CG0My1ra71KjEzBS6v3opwMdJ0jrN/uM4FQxKROUZ4MIis9BKgNdBz3R60Ky1Gijv4kaOvIjqEGjvomgzYiPyqAd7ekJWCM9gj4wFTwBIFz5RlJci21y/uv7p3eMNqkmH5to1jWbOr6diBPmFAmK5nHsRJA/hmXoI+NXI4zl2JVEBo1bNUCUG10Juuj4dGrlqM9Y8dUN41AMAXnQisABTr5O5ElXxJHswFWU5UG0pYjKTHaBXTR5Jse+Dx06H2AN8/xK7DhBqvOBvg0LrAhPNEkNxOll2ImkXQft8B6snoDZQbu8AjstdUrDdHj7dSJo0035evHVCGPdTTm+86oBonVTbq+5TmSJBhpVhQ30SJRmoNF3Y9W82lRN/dWPcWxTolnFEsc0dQjdY9rpDIPZ6JimSHsa2JQomH4ElfhZ9bNFuttYggVT/26Vsn6+dvBxwalZKPVQ7mUeHBZZJsBCr8MFdTgLpV1QbGGNNoRN6kW0lw8HgWakCeiQk+ptTM2rNp1KF8Qi/SdxOmgfWOvS74JYpB8//BC6e/+75NsQFqlnefCk7U+75LsgFunnwcNBY6O71JsANmlDLy33FChvLI90hjM/Yfix1/BWaZyIND+BDz33jFQY9ptjUsf2TXV3SkTohparJLzxPQT59rEHkl02O0cWeK9RRu4hZOpNozIytz8ZMhVpNCg0WjmpaIOCci2b7UEE6V2Q7oX5fcZej6FC52Vo9DVhUDUVQS4u4sNBlOzE3FfRtm0059yXL0I3teASedi516mV0ervT33jGef4UhlnQqWswtfG3KkeVindvEQirHUzVQ7KBdWtzIwRYhWxBsjKx16aiBYsu1SIv8S0VexESqwgVQrTBrITqXNd2RVRSPg0KpjTF1Etsd7qtrpbHDE91RSr4EGSB0cfuhexjDjCykf1p5xd8JQzL2VdKn/UPuxqFIafd6XqNsYsUyP5siHexU8CHm70Qdr45Yhexc+b+E5kH+NjIKkYYRvYSVP/NoFOEH6DgKb2LQ4L2CXs9I5NWA+KxDI9toF9aK60L7cDugn4SDtN+zo4UnMb1UGd9Mrmc1MOQoiyZYOJ2xju6pzG67G19rRV/92ZFYJXpwVSnXlnXJy8vY7yVmRxkeqmynQ0aRfaiyqxENJecD+69LbXavtofWqcA6zk6PTV6IawnEPTXxcPIacTyfrhnZSrhsBwJKo678WT6A80ieLDGN7UOfnvRXMrhQ/BQT8ZPpB9aENZqqgtix9On4V+l+FQS4V9OD0KeFshTfG7SDNkENJJPreB7TQvHgMZXWmO0gzEtioU9NAlReUuTu6zwTgLq7ylbB4nRTYYXNnX4K7PIvjhXdfk5IUPNT+cun/jxT4geDh1/3b5FmMeNeMRp7ROfEJURXbtu2GmRRR2AZS/5wQZRGEXIAqgra9kasaXdPly1Rbz/uyF8snS7FEmmH4VtT9tEfeiOvFc9tc3atuM1qMq6mDF46GLasfzURzEPshFuK4m8RfbXD7LXKI0YROxnv0P+hEtWXofqebA/KP+xwm6KO76BFvX13aydtWQnuyW1aHcvbLlayLTAJu824tc9APaaQ0qPLmSDeq6hxo2oPimZsvxzzxgOHZxPBJ8OLUrNDYwD6d2dcY3F6ujM8B56u8+BdkqlVuxzHJ5pNTafZAlKoLoR7DTvopC8SrSr0GWr4vtVmQZzeGUVTx1piir4rn6nl9FuBcpYULuUAZ0mo8juA1OvkB16uFmV/dBcYpVsOpoSbwL+xF8aV/G6eJwWMXxgY+xi9PgcEjquHZE1fxY5ctV/09rddUsWdXUqv93bWnlpFW/M0QRVIR+d+imTTQ3pTPmmteVSBJ4RW0v8qQJZKmRymOQngjNKalCOrWqVRorQxOn6zzIC6wQkyZ01oS2Vo13uFYZxk5hPXiKGJEavjZsrXmn9p5c5eKIyJV7VGQVzlGJstrVyrmtdXWaRFeo03X2g8h7G0pZ550N+8FWjg+nz0H2iKl24R9Oj1V4D8o0x2Eg7uozMGaP3GeMZLYSUSijPXFvgMySKrzzToBDHD8VyU0q9zIKDs1iPV7DqnhxHa9ZtXepberouMUuIhXN6y4ileA6Lg4f4iIKGRBZXBweVBxngnLRIntcBdunYC+ICHWkpIrkzPBnIdJT7cFDsmU42YazUErFXma5SLGevgln38+n4hg/C4dNh1UCs+w7TEUkXqo5DZggEi9hE8xGJ86DXCxMp257SmVA9NAtWes+Kk+xSQHOYA5Ui34UC/1sNDslsm0qE8YevWw0X9Ul4Py9R2yq8ttBqfR809zfXtnBFKn0wXK1j+K0Xx7r4uEo8xw2RZnIZRmx3x/3ItqxEMchmYdxSMbw8DIvHp7y+EGV6nfLlBdRWH24RXYpxCo4Id9PHRWKwuqTBdlOiKSO4qpPrcx9APd6rAjoGXfMb4m7E6na+0fMbhNF7f9zzm2TmIUH10T16sU1iV5Sz8Q0EezOxuDaH0T+IkS0zmPto18IyEMVO2tiW1AVkfue5CaNeXYlV9e/OPhnVQKz+GdTNpujIVNAv6dDqvQvRShSpVNvwv/95WlNbo1VErsmiXpf/o+XJx+t8lmKF0i8/t0y5d8zOGsqzI/Mll1donUZU1uKCr2LrdrE5HjsIpHLNDUdbm1+BY/LDs87GietBmmd4XNVLZlBKVVXNWUGuzsU64I66GXA7O1QjjJzS1O7E6+kDFah8yq0g6oSIshVwZg645pnuiex+w2sdaxD2r306Ee1a0DTseGDFKZdgwO5JpyjErG4aj3KkWVYFTpO3NejHCqmKFHzV4X2kL/icIji0DDwGih2IZ3VyLmsw7vnU0LzbH1J0kQbSYuayTq4ex4jkb/EqeYqz7FiF9BaKwHWJ/tSlCVKRCmNn0lKTThrpZ4n8ak8WK/+j/oVe5H3bWSrbzrdCrcLikP+LXj9FGTQQbs+TrkTrox3DF73QUY5cEcluXuNyi1ap7XYqtMj17HB49QD5a9RuXHrlImtOjYSxYhDinLdVo7NvanbHnHUfhDafaO69OmzEQF/+gxmUYtbqp2tRfost+IW8gkHpier2mdWxSM5iChJ2Q4tSMp4/kgsJjn7QA5TnVMr03f6ugcpZBxpVwjGIfw4gNpUaW7gBJk16tELwyMfquLX5fWnu89UzYOI9jmwXg6okq9Q0yvb3KPGotFepgawsG5Uo5JUh/xD49y6oSZUsdBZdioFcK2XHoBwsxdV23zNm16af9cblwS58A3Gsrz1jc4IXf1mQqPc/0avsezaQroJjqqv/B/gzKWeoLxCBD91acWgFnS2j0K3EkeAUUs7TWwPVBXJIgpZtra8V6SMGUTh1OaS+5lep/0hjqeupfqjl665TYjUG5cshu7wOTgU0y/Xpd/8TkqZ2uV1yVv0cqimrmMbKXL6MkgPMgadJKX9QyoUDU8Kl3G6jPL0dFlE+tl0jeIuVgrpadfFcSNYlxs6mAjVLhAnBmNX3Cmye1+KHtzhTsXt+liv9fhv52Rr0zOKpuPG9d+9mMZ+WiTr2ECZJpEJzGfYCempBtVUDmQsrCVFWWcwp7ocm4momivbQBa3aYiOsUEPZNhtmqgKN2stgl3LRnigxj2goPRTmtbSa+Af1cBMba1f1NftCuONZuagXswAkjzJMgC5MRiL5pZhs4OOcTUp4N66BR28kRxFM+8nh2qnBefAxzb6ASjvIBmtZ+CX2/wsEIaq/9p+6bTbCjGwyV5D/0wy2hvGjxQ4Ge0140e/lIuPH2+X6/Xm4823xdX1Zr1cLW8Xdze3/BpZNZ1NtVd8k4lErfq4WqDxHLbhak20NKuzZqOpaueSnGy/hPbqUL64affOrKSqLx88DO2Krnr6YJTgnHnxkwGY2o0SewQI47N9rtaZVP9gEBOX94Qtn9n0pBulE/XeLw3Itmo2MG/uSLZ1TupUiGfe+JRqirCKpVrvKsinhy4xRJVE2CaRBKN1Jb+lWk7RivQoM3XgUoSWnUI5V9tLZvYeYgffkU3i1d+VPSfnIjIuYfGIg0i7quWXvd5twjexvYhzszXmoHu2xXRcngrdmIYuRd2ZenfPcTAcbgfUuqbX/ehpyDtKkDjI7TGaOo9MXcF3KSOZPWqOCk6Fqwi7LoK9NjR7MRWmTGEwVbUrOaDyQxXDj7p2VhCWBxewmPqX8lUYFtNAiJ2K55Xk6t35bzwGWcXwpP6eK/7em/b5r1zxKoYf9b+fM8X/bl4c4Gq//4WpXUbwo82tbd7q2k1iGBwD6nECLntZEaxzSiczgchyt96mlyCbwKP2PdveFB7tzT3X3hT+7M09294UHu3NPdfeFP7szT3X3hT+7M09t7b5q2sH8fDu/LdFxi/6KmaQefwG3wXRu+3FeRbOPm4q1JysbrFwqtwPa6+oRn66pdepngo5Xn4lqPWHIvXz8qbVuOHPXoYjmiRJA5IRqd1alk6cODdE00/McxQ6bcL7XURd4xqTVhZdRaSpwus0OmXz2gxJHb8QwyTqQQtaoTDJUs4UWxHgE/cEJPq8PZ3RHsw3DbZyoOOAVgucCfQrAgSM6SoAn4UwU60jQWan+RzGWUadunZmkWanpp0cMH88CeGzqxulyuntesi8cysGaeTcCll1/fVqtfn553c/b9bL5UeqenaQSRUrE8D0H0RB3R9nILDYKcej0TluEAtn9xyZpHwtlVwb68CO30JmFyohzTSwQVdm2zaCozbq/Iy1yf4Prm2ehTY1AnQimq4NOEATWYIPhCvm8eJq9dvPhu2TBuk8DmTy28+a3ZSWDJ/FK5fgUbz60+eK+1aGd5AiGHZ7SRmMwEksIxrhJBaZAFoZMgBQlofI+nRHa4zB97VwGszdGjNQPS5Kj8B2uMrD29QRsd5L0bh9aO/QBPDq9A0SZfl8La+dyzcUJnp8Gk3SPiG9KHYTLVWV4OANhR38OxIL5N5pSGy8O4wDN25DELplw5TRjm8ozD4/weWgdYN6KLdeECckdIJjMEYfiOkTZz5GCMy5Dy4FOPsBo5DmP1AeimMwxOD4BZi6zK6iLNc+UaoXl5nsIrhqMztB1RGTx0i6/mraDaO1sQ3gsxseJsrphjteq254JEzrhnWazA5xpGvfIdJYgA5RR2LRIaIcaKMegZCbNKqMdYgjYdsOkcxB6hANUE4dIoEQ7xAnYPQOEdUnmP6RPMP0ay1F3wCCJ+cHv/oxfZMUaXZvgGlaX033GtMzFazDOSg1B/M25b8JkuMIDtrHOCwOgqw8DO6gqy6Y3lCLuB+Yp0k1n1NNQpugaD4U8qCZKJ7qNQEdtMCmP1UktXvTtzQ1ekOPPQkCNn/C/SyGFJHbWjSoFu6HQdrGAeHxaF0QiIblhJBZiLWsB8OsaDR19KYWlIZ8bwudzuwoGWD4rhKbBXGWEDBLd4lMSbZaPTa26RoTDOxXonbopMHhQqS53KkNGRoSTSA/LowpYZono2MHtjAZhqVGBsIUCYPgOUhloNt7Z9TvYlipk026EcDGqHOZtGYdJmIZdgYP0BTNdQRvigwCswE1AvBNqAUPYkRROEszyiKFRp4AIGX0yeAADboRg2TSEVujM+pfxGkVSMDu1gH8GvN+ojxD3vAaTOjDQV19T1XuQrupVnePfwxysRZbwHwOxKtI6tmerIrkxhDF2gllrXQT1k3xw9er64/L241p+hMq8g02DWpmYHdaQ32HDovCAnZWUxKrjgrhMGz60rc9eM8XUVE9im5eVtAKqzfS8XUFoj6w5UwrTthxRlYuny1gKIs2vJsyoRMZKDO6D0xZu9lMLwruNSPq4S7PQNPe3SFyEF0dLZSjm4MQklyLARfLrUDU1aYljilW4eED4HT7Y9raZLA92M4moAfUOVEE4+d5a5E+WZ4rhW4vAnbTGvQZJh1VR0fD450C1LGw02Yjg7iLW+Gw4QiisXItXDYdGWAYBsZh45FB3L4z8LX5CAFz7BAcNyAZ4QxjXj9M6KYkUwunbkuyJTFsTKLhIFuTyEykTtxmexKZANwkZCAgbRMCbb+uYyXUEc+bhfTJ8jpWdMMQYap5vFWFXumdtg4Z5F26N4ftQxCNVffmsoXI9GXoDc9hG5FB3L5787WVCAFz7N4ctxMZ4Vy6N7ctRgYklgFHCUwXR5jUsesjYMvWM9zjN8xNt0kYwnkx4VDaJDtuyoRpIxR80QSIY3ljOpewmE5PwVhFOCPLgV9MbSQvX0xgix8gTBv7SZySKvYsJfXjhdduzqoIs7AYnuYFcTTP9PokSuN4xwSqo8zHc5Ou0vgos6ndx8HiNGnjzkNo9OlhONStZ3LAV8WALHb3+TP5ChmyC6mQIec2YT7R92B6xShG9Bwc5iIqh77dE3efg2x6tBXE6yfwJE6PVQKzsK6Wq5V5lZJgwnRrlW581OEYCGcxJrMh0/mROBdndMak2j6K7dMw6PfgIEOZMxttmdBT9UPtiD13Cc3Cvhf5IjqZZ1dA3r3Ig+jEfwmGz7iu7KzpQm2MsjbT3NuzmZwykkwHqY4xD41xIRhG0q4He+QyD0XhnhYdjXI5dIvGaGc/W6kgl7ihYDZvzLgx4repcaDtX5exyIUH9DfjNU7BgYjseThLKngyjoRoNyPH5MVWeHDf0OKdHjdG/doPB5T3Qg+T9iWQ+WWsxpfx7lLkW6a/raJXQ8x4t6ujz+OdpUK3EQN2xJo4XnoaaPoVxKDMwTJZyqL+/Y8vPJAy1o+Xp7m+kXmjDoyF7tdhciRBmsvg8NH2g9XxTd/NcQwJTGvTHXi/237g1K0mt9FtOD9enqhT2yOcHy9P2FXKbJontw9wVsfnT2pZ34uEAGEXJLE5GNMJ7nuY7OgoUwquO5rYZHQbxN7fxGYhO6Guu52syXiOqNe9TxbMwBoximqxVMwm5LrLlvuiXLloLrLLLik2IdHdHHeUPIfTacsWgmLjdKI8ylP7/SVfROGKtnA3glLxf7zkQRRqFvGcyIC7rxAmwiVYFjTWjgRlvxvJuxm4mWIVnER6G7zAk1O6YJ4cTGPSRO9SmwPTxS5CbBIVfBMYPUwzjy62D6o0eNnkr6xiP+vi+CDIxDaOwiA9barXVJsMal06MxSYjCUn3dU0c1n5mWwuvZOJUPE8TA4T1EFAnxDvGzgUgGNphrDwKm2YMJcSB7T1Jzm0cFdvZrSbpOCQHeJAt/hkRqoj2FqsfscljW+Adj/56aCGydE6pY7OeNRId4fSWAu+O0mrQjaXIykbE0nT15pFnTrLFKLaQKMZiRNMHl0NvQPJqE6++4hHs96mMsmtcLIyqgcecycwUucbfrI2YuwNIJYGHqUCjfqIhTRg01qcnsH8lMb547v35WrOIgrXeZCLo9BslDYF9GJMwcRJptWYD4OhDWP1LuJaJEGqXQeGiarYWS+2Hyr9XlKYZbqZ1ImgHBleRUmRZ9rNdAhMGV2W0Sdb6Zhc1C4LJrLowKzYdN0ZgYzTuXG5Hvnfz+s3M5syGAI3a1wSY0cDg7C7HVsuuBOiQdp1SVxiqINCbCahu6JYq2nn9X24B9jENQrms+PSJc3ptsY5MB1ZOSSPwad3LIoyzv6dJ4IHkQefpi8vQwAqyt785DJPPxQHNkAZxxvBPjgeg8XDlvkZymjBw9bblygTZJZEGcelJMjdi1ae0rkQtVEjpAUgGyAiRR6voyB9+j37PdMMoSCSPM5UzB/ZjwwYQfFoqvWtFeRCalmqeCQ3kkiiVm30MW5FlsSR5lgSBKiS21e/j05rpF1ytm1q2p386ykx4f3rKfHZbTTJcboKRWfqHlCdwCH1BzT1B4fUp6u5kzLipc4cPXSZsB4vYPrACGGobjEmALRRU9mKk80joEYyia0iywzCqqB/3xe08ugJ2iQffgLi5LUDVAQ/vWVheOajFtwznrra/Vm8ejGXTTokO6lADIUi/iyCw9QEtMm3v7NTNlbANm30yVVC6nAVm0iZ6xZZF9iv1JMj3EsMqNR3RJRzTmaV+mYIWYeyVcE+Uy1j/60e65zcoTWiyY1LzRirEWvIWNq5pnQclBrTybvVHJmV5y3NQjJ7rgNQ0u6bs6t3579N0lV/9GLQ2oRIFq1kYS0YdunDS4WjlKk+U5e8hbeEaup6kpEix0OC9Mx9ZCeI940kBXQBUKNIXvqjEiCLfnoE4nIfxGDsHjtFtmdG0YPN4VTczhuDSCA/rNOneGBjKzAwVu81ib/3ZKrecyzVe66hek+zU++tzNR7BysFK+qN1HtrG2VUg6rPe7qFwtMnGKixHsM+kfRR86QBIFsnIwFgnN5b2yZUDTNN7/1YJiMHbJjec+zSe5NZOv9VY5fOf/VkmJqEaJZJsfBMU5s+YpuGKZONU5u8jXXCNLXmaajIsk+AHlCNWkFCLaIo4CZqqki3UUQCzEhpEahWCmAwm6lWkW+nCHqIoZqIW1oqgAQ0Va0+yVaNrEDfWP19upZ29fdzP6aqTodmqf5+zjRUTeqInRqkSzZTTeI2VgpR1BqpgR7LRpnVgOrTyBHqDiF93EBN9Oj2iaaPmScdANU6mQnMxqnR49smXA0xTWNpS8tk5gANU6NOskvDNt83S+9/mSb9/hc/ZqlOh2aW3v/CNEtN6ohZGqRLNktN4jZmCVHUmqWBHsssmdWAytPIEaoOIX3cLE306GaJpo+ZJR0A1SyZCcxmqdHjmyVcDTFLY2lLs2TmAM1So04yS8M23zdLmslxT1PjnIlx7rQ4bVLcakrcYULcYjrcejLcZiqcPhHuYxrcfhLcyxS4wwS4xfS39eS369S3n4lvu2lvzqS3cco7VBfw7aTmSoHuJz8GaZgczTB1dAYDJcn8Z4OgDD2y6Rrp2Zgwmr7WlOnUWSYN1Qaq4kicUCFRNXNjH4nxGz1ZG2n8BhBLI4BSgcZgxEIyCtrW1TMOyJsfMzz1YfvCh5eHPTy+52H/jIfr6x2eHszw+k6G/fMYrq9iOD2G4eENDJenL9xfvPDy0IXH9y1cn7Wwe83CxyMW/t6ucHqywsNLFU4PVHh4l8LfcxS+X6Hw8fiEvzcnnJ+a8PTChOPDEl7ek/D/jMRcr0f4eTTC51sRvp6I8PsyhMODEM7vQLg+/+Dn1QfXxx7s3nhweNrB+UUHPw85+Hy/YaZnG2Z9rcHnIw3+32ZwfJLBy0sMPh9g8P/ugp/nFny+suDxcQXvbyr4ekrB7wsKTg8nWLyX4P5Mgu3rCI6PInh5C8H1CQS7lw+8PXjg+Z0D0vMGdaCLONrJfZEGUE86CORzEm+aMGcqb8huGIwdg9eL+HhUZbRMnsDPr6E5Bq/bOrZInkjVgUq1fE0+x6n8K47WYstkEq/JYxU3q+J6IsrT4FKKg+FaRwQpT4Odiuy1lK4ydfDMgkdm6kCaV5bfX/LPIghF+uH9LxZEP17yxzL6w/tf/HHlaSDV8OqPRyEO6rbpJ/NoUcPVRH8poydNdHeu0fQMA2k0QWNLw+hodWaI1N0aS2JqaJdparaD5Y+gYR3e4BDkYh+nxkLtkjvrBQVzUuEZ9EKRB1Jzmnsq14W0V5NRJFJicZ2VgUUd2F4zFVl8KNRXvJPTK0mmsl34vAxvr5yfEmO97AnWwVg6wxbQ9KvI7E2/7jRRdFM3XH3lTpUB7mgZVuHL72qTc037Q6fS/L7aZHiDgu7coK8iybDya7RXiBreLwi3/SiO+ubl0cmzCahBQNWuPm4ubr59u7r7try+Q6bWJ7nedNnWzbETeQbV2fTykx4Be/CJqorP5bs/78RiAebzXR9zonKgwyr2001UZWyOyvWhJi4HaZ7K67NMdELgrgoTmMUjTFQe4tyZ5ZNLlhTgfJnLA0tUHthJ5j2nRNUkzEhZPJ5EVUffTNIjkJ9KonIALySZulT0YSS6NtM1Ij2DRFXXPmChlwWfroD8iKkziLb8NoBPZ3CYKMcZ7HixzVoXIs2r0TMxb92Wre0gqicetG6ZaMhVjM7C/OodC9nk4yxqCfj0McgFNOk35igjhUEuKLN9KMOPZhqLKN/OW9koM93XkbS9+0pjAdxXHYmF+4py7EX++8vTF83VWnqQvch/vDw9ATdtUZXRjnekTO52UWXMcR4J2zrOZA6S42yAcnKcCYS44zwBs3ecUR6CuzbCYbhrlLaylsfiUE63cq15uROpiexk0UfuExdEZm79Sc+d+RaHxUFcTW1H84MX92WQGMltablMu9oN2+uHStgTj5hK+R9Yog5CTp/anQ1VLLoxkrau+9Ioc7otTNfc/IfCeKPHlIydxFCI3TlQdeFOQQ9h1xlgRJDRHXJQjC2mpga36xyzAipUlvMswMBwPQvdbpD6757MVpcW0WpVUCajddDVxZ5GFcAqbd2H7aUMfU0w3SeNXzlIGXIksbQ1m6aHaefmwRuS9nQryiBl88ngabp0k90TsLLYuLLeYI91efYaVIUMR0+WYjVAnTxeb4NDgDTCPM6aULYqpi5hqMLtEUiqWIegQbDtD0AeuDvoUdB6A1BLmXkVZF3aTlhOhT3GzyJrwpJb/qhjuEm0m9G6n7x1D73kyD1ETWfa9qK9DWOsBd+KoVXhmLG+lKUlI+ibjNlEnWvPYG2ZrWOtXz9UllkWg749pgM3sr4UrZUR1dBbO4zq5Ns7cBrQ0PbFrWwtTRs3tzoQe4sLUxXRSxpMdwaNMdpgtiX/IY6nZyonraoKZKuBdSB9KWofAitqr/iftNgqkL3G9AbcqcR7FwXdJbsTiSqQtYbmbsyJxN/N78oRFDTX3E0UyjDWCoRv7fKla4eEYp9qfwR68gPXu6fU3sKt9t4Tam/hVHvvKbW3cKu994TaWzjV3ntC7S2cau894Vszv/TYwQUqb/WTNwe3lxzZwa3p2A5uXwt3cCcqHAe3L2Xp4BL0TQ7uRJ3r4MLacOfcF6d1zUQ1kuOpVWc5nnQa5Po4CId4jRzOAzrCfXUrR5imjTvCOhB7RximwpzHPgvVeZxanJHB/C6MFq76yZvB7CVHNpg1HWQw9WasL9YGY+hwTGZfy9JkEvRNJnOizjWZsDZcJfvitApJVCOZTK06y2TSaQgm04TDMJkwD2gy++pWJpOmjZtMHYi9yYSpjGP6QavAxvSwBmaW+1JUswwrGsf0fSl0TI9p6IcsQwl4xIIomEZFAwlsVIRoGEZFAwlkVIQoGEZFAwVkVIQoEL61y5dGhkV9HeKYHtYzjun7SuiYHtPAqxY2pkcUKLUXHdMjGoTai43pEQVC7cXG9IgC4Vszv/TARS0OuVzsRZTfBi/QzUSmgH7cVyhxmjNryofBtU2Dl03+yszmWRfLD0UmtnEUBulpo/bViXRT7xvTOcIgGJiQNSvZSQfZbFx2GzatA4+Tsdx5Jhfg2CCfE3VymCRm1xYE4Tu6llyI20uCtHSCmcSguwpy2lyIw6XTHkqCscDDSRSLpu1OaH3JfB2JYy9CMN47IVbBSaSmC7cBlp0QiYqKbhPm8KTUDlzXrZkuGLSmaXukddkhLQgdm7lXqzo1Tp/mq0Pz25v56cp89mOeOjGnHsxP9+Wz75qh45qt1/LWZZH7K5ZNGHcOy/D811/f/Zfp1QVNGH8dgyZdercwAjfttN6CjzAYMYCXGCxJzBfNGyHwg6sM/fakUPZB5kfdBiQTRhfzoYnphUakV1EotyZ7b0IRqWyjeeJgE3jTNj8CABLoXwKgc+AXMIPyvlRR/8gEQHaPrFjwu4ypcPDdxg60joizcGFXoRiJqLeh2LPoL0ShAsF3oiAt3tDhmm8z0Iby3ulaXCemx8e6O9i2jjDaHo9mYFGK/DEV2WN8MIzB9RD9SB4Yvi3+sfmy/Oeag3AMXjf+SuHb1TWfQEaeCe4+3y7Xn2++fuRiuH8P0n1rAAV26RpLHxvn6hFsx7ksKuM4F2Bij3OpRNW1UARnVXudlMZV9Ua2F/lVFPLKai9yWcfxUIfqF1Qqr/xW/Flo3w6BcTq3Pu0S8MCGjG31PMSRLZUBnp8wmH2r+QkuEWF+AsZzmJ+gswJXhYCIhvtCrEk4LqXlFXsuPLhb6XLZHosMnVPSA5HnlCw46qr+tbkm1Qaqru3IVauoL2JwwmkVy+8NbuaU2U44ej/XA955ji+nos/woOpdB8MhGMTyQPHh6u7bYqXu+eWXg7ri1w+FGgSsrz5dL+7ub5frzfp+tbq5vVvCvvCISQ0KutLZZEWSxGlO7LZdblSDysnNLbW/Ww1jsnVLHe46gyo1y8ja33oGIDi5N57uPyPgubs3bjehgYhM9wYlIQ9xxh2FaYhjTUJ1HyyuZEPt5LhzNg7Ovc6D8ae+HGa72BNcgFbXBcADv25sxRzo2c6d8KZLHGZInCdFrOdBHKc+nGY7PExwWM9pMKcx/MxcuExW2M9PcKckrGchHCce/Mw1+JxecJpRcLutH9MnzSPYTR14mS1wmCBwmRPgTwPY3Tw/FCPcOK/rAzVuArhrpfvdq9Ngt1ulB+uwU2Usz9mlghMgO1TG4sTdKbgubWfKWJ63K4VGUe9IkYDjYdqOIrH5CioBS9qLJrIHRadM3H+i1R+6PY9i+zR8ZfR7cJCh1N0IqW2BKoGnKoG6OTx3CTixmffF6IrEhxq6H0YnTN4Lw2YgbjJBoJh7TWiUDmjeeajOhf2eFzYD7Go47nXBafAnsrUo8BvZFhzqHsl2PSBbROGaY2JV7G68HkShvc0dOUpNwAqHRiOzo/qzQmlisS2/xoXCq+0Myx+TVFmOlNOyx1Sa6D44L3dMlalLHRR1bJnDlG98iYOizlvemLLYLW0YyLhzSZ6WNMg00OySl6UMEonMvwXJXbzGN2Kbqk4eM7ZjU5jw0ardsgpFG52r8bKcwiGhzd74X0ahMRLmc3y8JkMmIs2fWi+jUAgosy22yycmGzzu0NfSUIHX0tNNgP3E6L224jJ0HaVXk8n9xviSy0BSE9xOtzdC2STByXxQt5XWxyCrc0xdq0msH4ASWi1bLXJtHJWqphL2BpErpGynQb1WVEPyrKqryY2HSmUis6lmICHLHwLAbB0jPp/RQ8Lo2K4Siw1vSCY4esOi08AeC1TBrFwXKzaCD0MAdXBmWNQUU2li5RhP2J70zOkqSDMZ7ZdpqrFw/R+9mMxJgiQjOWA0mEUZlXOytyLINDObU906fNqE5yn3CzCVz0EudGsa3U9+Cm+YHK3oOjpDwS2uVr/9vFndLi+v/rGcnt8ZiwYy+e3nTdVOgAGZVnfQEsxLQWNJfBUIV9NOtI+FwDl2XAMcsYy1SDu9cM1dnB6DnF4Hz6oISfVXtzJNgjQTn8XrVZQU0wXSyVdUoR/Fq6xDc+prv7mZq43Xg4wWhxddjmW5H8WyP37leuTK4bgO6YiOk7bRhaEczbFSgh0Sr0du3I7Z2BytcT5OY3mExs+xGZejMtihD+QyxRmuULS9OJF2UeH2MZDRRvMio1a2C+yiWb4dXz55vMnlUWR5cEw2me7teR0EFNuFah9kmyKS+SZJpWbnkQ5lEsVFX61cqASDo3Ynkk5/EsVF3zTLoBPGZhOol2RGoWbRUn9vYh3UTe/PQkRbsYmK4wNZeByHSUB1DTxdsOl4raaXyzRdr9C0uzjT8bpML5dk+rwa0/+FmO7XYHIuv6S1T2PXqgrnY5AHCEMTbIaudpC0RZfb5sDVGAxBnI0CiQs3DhoqeyOBMVGr5BCKWzExCqLxGEI4GhEqE8eY6AF9GBWMlm5chox8I6MhGRibOC99yHJn2cVjcFAHwzVM2mB+jI05aZqx0efAblM4BEPcG87j2RapircwHAMDC6eKip0N4/Ec47A4iOtAs3cZYqmiRQGwf5nHEYkX89wXRBKJF3wGlccSp3IvI+2eWIhkEM0HR+ODXxvcdoCliYp57zyesmmy60oVza2ukB0IgMPGgeBzaR0IjIrlQLCYgG4HrD5op8OiMDsQAATfgbBiQhwIAqClA4G2vV63XT0mNqGr/uylW+4lReqGayJTt5vup42zL1EHsElbNeFtHE5rdD/9XiAbjfyUiA2aiX4oogqxcfZV8MYIq0C+Z1+H4mtOS61fScU2Of/1/dM7YMFOE8ZP9TWkS6vLGnBDxfi6vP5095kuj9y7BCtTez2jukWXxyXS9XcwD6ezY9BsDyLg1Is6uPN3kdmFSkpzBt+oLbNtG8VZ37zTwKiPO8wMfcC4mPQJdoahr9v7YJaGNkEwVPO43FlicGuM8nlc7jBBFmNZHJ/FK5/iUbz6ZOAD+FeH/TgUxc6JY3ECi9UAHmHZmkEBOgMmCJJnQGdQxwI/ijJYuYFPc7ehEUXFDdu4SeCnb90L9RpPziiSXgwPPYiFw3QmM8I2J8Sz0TpvhP7E614kQ7JMzw27QPtJnO5OCfSFh+pP4pRX4V2VL26+rW6X6/Xy4wb1HsclcEzKB6LCDdmPxGiYCC66fPfVeZsYkwd2Xh03jtFZaEaZf+8snYCv71Od4EA43jTNZ6G6Ez43vHEoSc6ExRY4OgO2F86EQd0UZ02i3x1HxIG3yb1Zm/6b+RFnOgNwoZQJgXC1FEef7Uwot4YxOkV2LbYBCbXU7y0NhmR5Tg16awDWmY/EqZ25y50AJm2Xztz+VgCQxqozdziDb4JhdKX2p/BN4vZdqadz+BiYY1fqdhLfDMfpSp1OvpsQWA4gdva9DpgSpu7T8UjUk6mcpMuxlalhgMs4CmbEAM6EEWoghQw241Mimh03KPMmj6fi5O6Zoo9W+6k+udaT9IHJY400YfKYokqYtJ2KMyZtaQx8AJ/quNHVEdCtLoWCYHanEAy7S2FAjzgaQcCzjvaWiTUxOqWiToySrBN4BNNsoYxnMR3stbazJFjPOaZKx8kye0rHqdKJOnGqlKBMnirVlABzqpRAw0Rw0SW9EWASxnaE0pXxcd1E3DCuc9AHxnF6dYtxHIGF0jVYTokS1AndM/OEL1+bNG4zgjiN20iUJBfCfgqUwECcAp1gMKdA+STgFCiGQ5oCJTDR3CvrZQ0CAT4BOgGgT4AS9LUHS439B3SyFO61dM4JoVbOMuU5TpbnnDhOeU7EqZ2yhynPibb9lCeVB+wqPU15ElgIzdx2ypOgjneVlClPN21iVznHFCeJktJVOkxxEhhInYH9FKfBcgwMY5VU8HDQEXQ/ejKGowSJZrDHaGOIxqIk75yoqTc2WsWxmeHqQVVlLEipIrgiYETGggTzQdfDDIdJ3GwyCCS6ZqHdv9z85LVJCMYFoj06gz/wHBwKczVptJpQDBVuoxP2l3wS9aEGKGwv8cS18cYoyJd0MtQu43QZ5enpsoj0dw4Z1XexUktPuy6mD5rq7IsVTlZG9cCTx9/iZ/FdkBpYHh/jZ/Es+C2MZxqF7bWodG2amRyD2PpVGBXsywxZaD6MzsrpjDTw0f1cYTpKjmekU1OB7UV+s9tlQjeJP9TbizxuQtqqpYKi1ISyVSFUgZRtFnG1RYZ0Q2PRIKP5fwTtD3F8oAs/VKHdVXn59ZbbS/kqQqa42iIQeiO4enf+G11bVqE9qL7niL73onn+K0e0Cu2u+vdzhujfoS2ZdM33vzA0y8Dumpxa5KUO3SSwjzRWjROaY0RVXud41zYSz3KXHq5NjKXsSfOeZScKT3binmMnCj924p5lJwpPduKeYycKP3bi/u/ni+z+IB543/bv50FWtLHcKTjWqvBjre45+fWSS2w8NValDqmMysiE7FCWOBHL0fwuxQtL97mKwNAeDF/MS1F+V6AsFp5c1n3cl3vsV3lcF3cc1nQoSzlO2uYZB+5Cjqf1G6/LNm6rNTaLNNjKiHqEMISu956E8NZcp6mSm+0Q2TA9PH6nmERAe9yYzJAGL5v8lVqqZ11wvi7HdGmkLU0YncZkykwsXJNGIoFNmwaFMIFD1QZNm0aaP6fKJcFNH4BlbwJJjOBEq56MNN8KtdyBYTwmBwEbxlEIT4ZRlyrRMI6RDUZpJ8QqOInUdDOqgWEnRKKiYbeikjlS+GEJA0YavOSDWI4UmdjGURik9YPidaFoDaeWp41fPegb9OLzyehGXMtiZcQ5NHojbmbhGXEiCWQYDJ8INwtEbcCIa6UtjDiTBDPiIJatEScywkZcS0Yz4kDbHhjxaH9QpzkW1X3OGoZhAE8mXJMo0YKPeE2eLXyztR6AeKc1lSEBji1p9SlXFlG1zYdv9NL4uUWisrLxMtqvt49CcxWyXr2OkzVx2ATj9dRFdAKOH2kZ9iIPopNTORAOTxqz70UP9hVM0jRfwYpCWd4FMsgkYCkbTB120jld4PwToacltCzksxJ2FIaTEhQU5JwEkYdyG56WhnMVHoNlGZ7/+uu7/2L1liWLqCIGbURXG2c6emowbti5U8C6992Fsn++CzTOXfOLHwdhkBrNM2jRTC6ByRcYaqG9P6YDPBoxkiK8E4GqRQQdNwV1enWhvex7qKLCwdd9a5TIo7mhls0ojqSuHb1ptFmjNkwZGAEMpQl+P6ZlHp2NviZ7VEZVRkZjegzLURjGBI6+hiSkUZeuLfXMZ88zWkRh+bbBRFYTxotJNaVLMq46cIO5CONjIKO1SIJU61MZOaqIWS+iM0vCKuGzJrizbg744UZ1ihsOM1CNqRHBwqxyiXQGFubhmFoGzWOQTX1JI0kd2vmrmM2NURo3Owx9o/k3V0tuR2BBA3cJKJpd54C0Z4PZBseLpoDeDfgkcbYVH+TDzYRMYRztCJkNMyYGMluLQuGSWT1EZILJTLTx/Hw9mV3Wq1hslGYdyyPLt+KQy8VeaAbNGM1RRQ3qqF55bD9VSeT/e1WD8LX+AWyMKSsjI09ic5lo3dUUh9dnUUhIHdcUxKn34nDRuzAzpHs/RiGGxjwwJ2UIRKChdK3cllmHn7Wj7Ws49bdN5sC1m82TZumChDaI75UsM85Ok8DwaWo6l6ujMgDz6K9QSDluy5TTh/eCUPKdmAGm3peZhZPt4oxAtZ7OLKQWDtCI1eAHzUfrWAmMXtIsxFbO04jY6EPNQMzvhIe21LonRrjYjtYAy5u/RaS0c7u0yH69L4TfxgkbUJt8sRlYtfe0kSDBS9sYPgjBYWR3BE2EWV3GgYiTz9jmz7xjdZPYF8BZP75fsnb356ba/rkJjPtHaahggvOy+0Keg5TV8Y3xrGYNNEyubvmQy6NfTmLlOOYaUh+eOcbJd82HoP58c5zUzSb79M5xVgv3fEzr0T8n8rpWBa8eOs5s5aKPmb366Bgz30kbG1ZbLx0jY7vpQzBvfjqV085R10P79dSxHNi46kNun746Rsty1oeYVt66zi8huOsW5raLMqvLPpJxctp7uZzPOR4De3SP+fz+sOehZXU9U0QrN1nL5eooj9k8uspEXo6zrKX14S7jrHyHeQzrz2Wm0LKd5imuN7eZwutuyf26zmRm92rh1X2mcFs50FNury40zs13n6aG19aNxunYjvQYzpsrTWe1c6ZN4H7daTwXNg71mN2nS40Ts5zqMaqVW633ZaiOtZVpe4stFBMhd/fa/2aKKaTDjgoKI39bxRTRfm+FgdCLgzrXLgsyM9tJnWe/BYXX0lGdaecFjdjOWZ1rDwaN2dZhnW83BoPbRxXx77bOszlDx+7fdfW+TUNjm93cV98bNqaAfl3YWbdumOFncGNn2MQx5ffuyvrczjHFtXdn7TZ2WJmOfqRZHdqJkJNDO8irnznMKaDlLKaBzdVNnPJ5dBPJzBw30UDsw02k8PLdxCmwPzeRRsx2E3XI3txEGrOFm6ij9ugmMrh9VBGvbiKN3Y+t9+0mUtj5joDOMNu6iRRCtps4BfTmJnJ47dxEM7xfN5GSExs3ccrv002kULPcxCmulZto8n/0buLyVWyLXPtiqTaUb0dwlDLX8+vhuxiVMQXLiuAMxMo7pmAeFdRyoJ99eUxycFp3FHS+CtAlb18Lqtz4qQo9HsvvANKwK0WPx9GOEQkx66VFo9osMwNeZcFHO/EoM1bhiYxDVR7k0jCQFT6K4oz2limL0qnhTQltGyCFjt8Qp3z+GiSFmNEwp6gWDdRUE7GGWr1nSyOtws7XNHvp27fJOkOmWSW77J618VxIXBrcAMaupcE87CbWJ/LWtmBGeqPqw/Fb07QOmZpRngYXcbST4HCzF8x/4xkmzW83XQ7cKuqIg1lHUQpy9RxxsB10HQn++b+/I1J9fzdjFagTd6gE39+ZLGc5TZbJvemqeZioiY3dOsulSkVyCE6rNM5FGek6jrbUCtKwVWkkbRpRnYY1oVPzaahsq62ZhN+EGhZn806gw237BItu2A01Sd+sr6JIpKvghBH1w/lu1JO0uW16kAmnZawpitvKFZkMWawycFmuT1GoSM1nisVqyRQOyhT3FMNlVptDRZ7INiM6z11TeInmcErJdCkMLATjAzsVw5BzGiBLt2KUFdP0CGl2W4cziOmNJk+DzRZ16fU8g7j2RI5GuuHxZ6YROoahHrB5MNWOfpcOzbpxm1m4BrtB8WWycTIroz3G9Gq2nf1YHamjI0vj4/iNXFfWbMX03QnBjZ3Jg3VxXr34rR5dVg/eqjdH1YePau+eevBMvTmlvv3ReVxRP16oiwNK9j3rgOS1O134mcyI+6qdNnOuS3ZmOvZ6HcJnbwA1cF6sIZ2UZhpNnG520t/ipxnTpjWSuBjmVIPlwbayKLmGFkD2ZXV9Li6bqR29Sg4r0ZlzWFPG7CTYdZSbctfw0HkUdKYOY5C8ZV/R5gZaErHIbbsa4sZi3yUMabz0BiQ+WkegoXPrAzA2TvMfwtlYfoyGYfSHMB7sPZWNa+r1oL6sPEbNM/BDVj+2HSMkmvUhGtOi66wZaMzxrUGDgDMZcodNQcN8WO8I0oDQtwOZGOyNd5/Di+kmsNEM94TMzWx72D+l+3QWJhsmYRjsPogHc03j4hprHaQvU+1lD5qG04+Zdtt9psFimmjqvrM/4vQJPjlWhfBtknupcm1xjWwwwoHhnXGDNva6OFd3Lf4soq24Lo4P5GJtILIqbtTEdSVK8jjDtxQOQFQU+rIjrF8tqoqwFwHslPogTdx8GNeRKC7yLA+iUEZ7G6hedL9cmYhyGyAVzzNJHqSVbaMBtMEddfMge/qfQhSgse4rqwh/1hFctXslyGPoRbRnGXQM20exfeqFJptQFY/5HDJMsheRSINcXIvX3AKoiR6J19wrV5LGW5FlNs2ljurcYoY8Bfwo8gCgoD2JDCumBfkrVEEd9cpGzrIIPjTjhC5ZhnVVLB6OMres7VVkH3V94KadEnEXaDrv6u9+XLJeWjRHrIayGH/2pWyGmwRl7ehyossaTMKq4DijL0xaaYW1ZGbcMd9Xkhm6NR7T+RDHB0zkoQpjqfBJ9Q9yi4ns22CWOlfvzn/DRGQV5v/j7V2747aVdd3/En319hJxJfY3xbFnPDMT+/iSzL0z1tDoSLTdK3K3VnfLidf582cQ6FaTxReFC+nzKY4I1ltkF0AUHlyqFUxawMywL3RaIJSpVZAiKeCL1No3KmnfF6m1n/6FZ/y+r3frz+vD+kuifq/394OClVpv/T7+KaH9qVStim/jkyqnUpUq7zNq3sOsmvc+XfMe5tS89xk172FWzXufrnkPc2re+3TNe5hT896nf+EZv++vXbrLst5/6eb0VzK/3rO/3fGR3aEMHMitUEmM0yLJymHZ5XtH/6sk3kF3OdFHOl5esvM8NFnShz55Wt2VHgnX96hz/GA61lMvKvrXCR8yAmnkRtUgfpYnyU74yA/cF1/CC66LTlyY9NSX0E904IkLqB+/hBdc9564MOnlL6Mf7SFM5M3y6kwHhcrTfsoi+vHuC5UnvZhF1OOdG6pO+jiLqGfH3fJRl0xJiAs4M1nCEz5hIW6AvGURH9h0hvowzWqW8IFLdogHk5xnGf3choBmRIuo57dDk3xpEf3sdohmU4uoZ7dDNNdaRD077paPOj5BI/ogT5vvQ1mvMDuLS6imkrmRaG5Ol6mZldpBB2ZleN+uf/6/lq6ReHINcIKfUhPTAikn1xfvry2ZbD7aK8k0vYPVaeZZsj7HTHrAJJhEvyK75NQzQvfswIy8kvMhmVSePajOKHn9rBCuzCV55UQiORSvzCJ5fS6FHIrX5I8p5WivaSxc3GNK6DLdtZFwRV8toRzvqI2Ey3tpCd14F22kW94/S+jmRdbCcZVMD4fi1bkh7wOfGA4dqMsKE+psSjhSr8oHeXUuGRxq12SCKeWsil2RAyZ0M1uUmuwvoZzXolTkfQndvBalIuNL6OZF1sJxxSd6Q+W6LI9TL+idZed3nF4quTvL5WZ2OWpZad1UelZO9y16xeXZHOcFl8qd5XPyOKICkrhEP/R4eclUbmiyJJs7eRqZz/xldYfmMAPNU8lCtcL0cSRZn0Hm+MEkkVMvKvLIhA8ZlWbkxoxsMuFJMqEc+VGdUya94NJK4kJNZpnUL6jU9fll0gsuxSQu1GSZGfrR3tlEvrh/llZnOodUvqJ/mNaPdxGpfHkvMa0e7yhS9fK+Ylo9O+6Wj7pkGkpcqM5Ek57wyShxoy4fTfvApqTUh6qsNOkDl5gSD2py0wz93IagIkNNq+e3QzV5alo/ux2qyFbT6tntUEXOmlbPjrvlo45PXol+Xf6a8KGsV5idxSZUU4nsSDQ3l83UzEpnoQOzMtpv1z8vz2sTvnCp7ciJnOwWZITTBJfrhfbXlkxtH+2V5LXeweo08yxZn2MmPWASTKJfkV1y6hmhe3ZgRl7J+ZBMKs8eVGeUvD6XTg7Fa3JJXjmRSA7FK7NIXj+r8lbmjynlaK9pLFzcY0roMt21kXBFXy2hHO+ojYTLe2kJ3XgXbaRb3j9L6OZF1sJxlUwPh+LVuSHvA58YDh2oywoT6mxKOFKvygd5dS4ZHGrXZIIp5ayKXZEDJnQzW5Sa7C+hnNeiVOR9Cd28FqUi40vo5kXWwnHFJ3pD5bosj1Mv6J1l53ecXiq5O8vlZnY5allp3VR6Vk73LXrF5dkc5wWXyp3lc/I4ogKTOKYJM8umcKYigzNzEjgzP3/j9dn0zczN3qLaWWFqFsjdoh5kpG5mdubGqPOJm5mXtzG6ybTNzM7aGHU+aTPzcjZWN9lI1GZsnCrbvTLz8jVOl+tcmVnZGqfKda3MrFyNU82Kp2WjKSNRMwvkaYwHqTTNzM3SOO1Ekmbm5miMNp+imXkZGqubU5Gr8jNONa/9qMvOON2s9qMqN+NUs9qPqsyMU82Kp2WjKZWWmblZWVQ7v9dVkJNF1dIpmSnNyJJamQmZWTQfW7qfW5ONRX3gkzFTkouZRCrGtVdCL5uMnewVZWO9g/Xp2KPkjHws5QGXkI31azIyRj0nVB8dmJOTMT6kk7JHD+qzMlafTcsG4lV5GaucSswG4rWZGavPpmYD8arcLKGcbjUqszNeN6e5qs3PeGWmgzUUruhh8bpMF2uoW9HH4nXzImvhuEqnaQPx+jyN9SGRqA0cqMzUeHU+VRuq1+VqrDqbrA20q7K1hHJWxa7J13jdzBalKmPjlfNalJqcjdfNa1FqsjZeNy+yFo6rROI2UK7M3Bj1gt5Zfu7G6CWTt0e57OwtQy0vfZtIz8vfvkGvuCKDY7xgU7hH+awcbqyCkjimJZFi0RTuaK4og5NiRgJ3EpyRvyX0ufRtpF6TvcW1c8L0JD8nd4t7kE7dTvr1mRunziZuZ+mqvI3TTaVtZ+narI1TZ5O2s3RVzsbrxvs5Q9nyXg6rynWvBrI1vStWN90kVmZrrCrTtRqoVvSsWNWseFo2mtKJ2lm6Pk/jPEikaWf5yiyN1eaTtIF2XY7GabMp2lm5KkPjdXMqck1+xqrmtR9V2Rmrm9V+1ORmrGpW+1GTmbGqWfG0bDQl0rKzbmVWFtfO73Xl52RxtWRKdhLLzsjSWnkJGRWel48t3s+tyMbiPrDJ2Ek8KxcbaaBUjKnBRi2aih3NFaViRs1IxU6CM1KxhD6Xio3Ua1KxuHZOiJ7k56RicQ/SqdhJvz4V49TZVOwsXZWKcbqpVOwsXZuKcepsKnaWrkrFeN14n2YoW96lYVW5rtRAtqYrxeoyXamBbEVXilVNN8SVqRirmhVPy0ZTOhU7S9enYpwHiVTsLF+ZirHafCo20K5LxThtNhU7K1elYrxuTkWuScVY1bz2oyoVY3Wz2o+aVIxVzWo/alIxVjUrnpaNpkQqdtatTMXi2vm9rvxULK6WTMVOYtmpWForLxWjwvNSscX7uRWpWNwHNhU7iWelYiMNlIrF69Ky24RUbBIyZ4uQ+RuE1G8PMndzkFmLIBfYGGTGtiCzNwWp3RJk3oYgM7YDmb0ZSO1WIPM2AqncBmTWJiC1W4DM2wCkcvuPWZt/VG79MWvjj7ptP+Zs+jFry48FNvyo3+5j7mYf9Vt9zN3oo3abj3mbfFRu8TFrg4/a7T3mbe5RubXHrI09Krf1mLWpR92WHnM29KjfzmPuZh4ztvIo3sijfhuP0k08FtrCY9ENPBbuuVbkVHVbd5Rs3JHYtuP1arfvds93u3hAD4osmWJRsyW51tBr9vHedB+6Xbe5if6MjwWWfLSx0ZIHO/s7eKzsMxSIbtYpCkixMHslsvVJbJ4vTC6LPKlIaZN+ZLQPxJUZCW7Sm2SeS3ypTnczPOGy3okbNclvhg+JHHjiRmUqnOEJlxFP3KhJjLN8iHY+gQvFXdAcD5j+79SFim5wjg/x3vDUhfJOcY4H8b7x1IPyLnKOBwWx+C0iMZllT9yoTrYzvOFz7okrdal3jh9sBj71oyoRz/CDy8cnXtSk5Vk+5DcUFUl6jgclbVVNyp7jQ0FbVZHA53hQ0FZVpPM5HhTE4reIRD7Hn/hQl+on/SjtZWYn/knlVP5PhHOHAbJ1s0YDIk7MGhT4tn3/8iGCpD/cSAFxJGfAAGag08Sa/3qGq0um1AOLJfn00c3q1HYoW5/XZnjBJLUTHyoyWt6DjJAeOjEjl+X9SCayQy+qs9iUD1wKO3agJn9NqSeS17EDlZlrygcubR07UJOzptWjPTAqXtz7Smoz3T8iXtH3S6rHO35EvLzXl9SOd/mIdnl/L6mdG22Lx1oyJR07UJ2PpvzI/pxWZ6JJD9g0lHhQlYOmPOAS0LF+TfaZVs+s+BV5Z1I7u9WpyTiT6rmtTkWumdTObXUqssykdm60LR5rfHI5Vq/LLHkPinp72Tklr5lKKIeSudlknmJWKonkZ+WR36rHXZ5B8p5w6ePQhZzccaKEEkf+O+OvLpo4ni0WJY7BzRoKO1TMQrATrdIkdSA4I0lNe8ElqdSHmiSV9SCnygycmJOksn6kk9SBF/VJasIHNkkdOVCVpCbUf+juuo+rw3q7+an7mufG7eMtf/pbZtSIdJI8Uq5NkhM+sEnyyIGqJDmpHu8xEvHyDmNKm+uujsVruqspdaa7Ohav6K6mtJnu6li7orua0s6NtsVj7dUf/9VlfbIv1vvtqeys+v3qvm8oMhVPZWcppgcCRqL1AwEJP96sDt2/etvMaMDIk93q0N093jDrHSQGIUaylYMQKQ/4FGHsQV6KkFbM647WD3skPDgWy3Ph8PW+O6xmPzU71DISrBpqSapnfj5qhlpS2tnfrqqhlpR67rerZqglpZ377aoZaklp50bb4rGWGGoZqVcOtbAeFOUs+UMtrGZyqGUgmT3UkqWYN9QC5OcNtXyjvLFiqIX1hB1qGbiQNdQyGZ+YDrVwrfz70/GfCw2zPNorGWR5z5xdmh72OEvWD3okPWCGPIh+xYAHp54Rtu/RCbJL+pAc6ng/OLq4cqCD1+eGOYbiNYMcvHJiiGEoXjnAwOtzwwtD8ZrBhZRytIc0Fi7uHiV0ma7ZSLiiY5ZQjnfLRsLlnbKEbrxLNtIt75AldPMia+G4SqbYQ/HqBJv3gU9xhw7UJbgJdTbZHKlXpZq8elZ3oDLlSylnVeyKdC+hm9mi1KR6CeW8FqUizUvo5rUoFSleQjcvshaOKz65GyrXpXacekHvLDut4/RSSd1ZLjely1HLSuim0rPSuW/RKy5P5TgvuETuLJ+TxhEVmMQxTdiiR3mezJVlcDMO8nwUnJO/VR/jOVavyt7mHFf0Hpw3u6AHGanb3BM8WXU+cZt1fierm0zb5p7eyarzSdusszsTuslGojZjqzy4cyhb1buqO7ZzKFvTt6o7tHOoWtOzqjqycyi6bDRlJGrzz+tkPUilaTNP6+S1E0nazLM6WW0+RZt1UmdCN6ciV+Vnlcd0DmWXbj/Y5GzOGZ28alb7UZWZVR3QORRdNppSadnM0zkZ7fxeV0FOVn0056NYfka2zMGcE+GZ+djS/dyabKzqUM5H8bxcLHEkJ9tenY7/XCoZezxOtCQbY84uzUjHHiVn5GMpD7iEbKxfk5HNO0H2PTpBdkkf0knZ4Oji2qyM1WfTsoF4VV7GKqcSs4F4bWbG6rOp2UC8KjdLKKdbjcrsjNfNaa5q8zNemelgDYUreli8LtPFGupW9LF43bzIWjiu0mnaQLw+T2N9SCRqAwcqMzVenU/Vhup1uRqrziZrA+2qbC2hnFWxa/I1XjezRanK2HjlvBalJmfjdfNalJqsjdfNi6yF4yqRuA2UKzM3Rr2gd5afuzF6yeTtUS47e8tQy0vfJtLz8rdv0CuuyOAYL9gU7lE+K4cbq6AkjmlJjqeGLpXCnQ4hLcngZPS804wE7iQ4I39L6HPp20i9JnuLa+eEKThvdkEP0qnb+Xjj2syNU2cTt7N0Vd7G6abStrN0bdbGqbNJ21m6KmfjdeP9nKFseS+HVeW6VwPZmt4Vq5tuEiuzNVaV6VoNVCt6VqxqVjwtG03pRO0sXZ+ncR4k0rSzfGWWxmrzSdpAuy5H47TZFO2sXJWh8bo5FbkmP2NV89qPquyM1c1qP2pyM1Y1q/2oycxY1ax4WjaaEmnZWbcyK4tr5/e68nOyuFoyJTuJZWdkaa28hIwKz8vHFu/nVmRjcR/YZOwknpWLjTRQKsbU4OOpoUulYqdDSEtSsfh5pxmp2ElwRiqW0OdSsZF6TSo267zZ9+C82QU9SKdi5+ONa1MxTp1Nxc7SVakYp5tKxc7StakYp86mYmfpqlSM1433aYay5V0aVpXrSg1ka7pSrC7TlRrIVnSlWNV0Q1yZirGqWfG0bDSlU7GzdH0qxnmQSMXO8pWpGKvNp2ID7bpUjNNmU7GzclUqxuvmVOSaVIxVzWs/qlIxVjer/ahJxVjVrPajJhVjVbPiadloSqRiZ93KVCyund/ryk/F4mrJVOwklp2KpbXyUjEqPC8VW7yfW5GKxX1gU7GTeFYqNtJAqVi8Li27TUjFJiFztgiZv0FI/fYgczcHmbUIcoGNQWZsCzJ7U5DaLUHmbQgyYzuQ2ZuB1G4FMm8jkMptQGZtAlK7Bci8DUAqt/+YtflH5dYfszb+qNv2Y86mH7O2/Fhgw4/67T7mbvZRv9XH3I0+arf5mLfJR+UWH7M2+Kjd3mPe5h6VW3vM2tijcluPWZt61G3pMWdDj/rtPOZu5jFjK4/ijTzqt/Eo3cRjoS08Ft3AY+Gea0VOVbd1R8nGHYltO/hYDleXTKwGFkuSq6Obg0fJPuZiqJh1zMVEqzCZGwrWJ3QZXjBJ3cSHisSO9yCjigydmJHg8X4kk7yhF9WJXsoHLtkbO1CT8KXUE0nf2IHKxC/lA5f8jR2oSQDT6tEeFhUv7mQltZnuHRGv6OIl1ePdPCJe3tVLase7e0S7vMuX1M6NtsVjLZksjh2oThhTfvBJ49iJusQx6QGbPBIPqhLIlAdcEjnWr0kk0+qZFb8ioUxqZ7c6NYllUj231alIMJPaua1ORaKZ1M6NtsVjLbujXp148h4U9fayE1BeM5WEDiVzE9E8xaxkFMnPSki/VY+7PDHlPeGS06ELOQkqr/SQVd9IbcvKHwepMPyILHbwQNmJA3SjzXSae7bPZ7eVhxjMOr2g6tiCGecV1G2EW7IDbpbCi+3u+eaw+/riYXMDDwgDih+2vcLu64fzPfM8eHuzW98fCl3Y+5tm+RBttBM7/9b+rnlN9lJ7/9Zu+ps+A4NrBUaN1bTbt9QGu0U765JtqHIaKpPXTtXsDTVnj96azXnrd+Wt2hauYD+4HPsZDRTVK2ifsvSTzRNwILt1Kt9Ngd8Dr/L3zG2aFtlFoXL7u+T+zkydHzZLKB1dbLO5sl3m6OYKGU3To/1E21S3cd2sHeuqtqqbsUdd3eYnJbueZCmkm6ipYn4blelBqpGCLuS2UjWbviR2e6n9XTMbqoX2e6nd6CW97yHXCgwbKzB6tdSmKkW7qZClhxkN1cl6op2SNduzzNmXpWZDlvqdWKqWAhesAc6xn26gJnr57VOefqp5Qg7ktk5xD+KNE7vuufL3zGyalln5XLnkObmnD1Pnh80SGNheaoFx0cpiMg0/o1k6WU80S1VLleesUa5ZnFy/KrlqWUzBepgc++lmaaKX3yzl6aeaJeRAbrNUsRSIXwNU+XtmNkvLrAKqXP6TXN/O1PlhswQGxxcaGi8ZGC8dFs8bFK8aEp8xIF4xHF49GF4zFJ4/EL7EMHj9IPgiQ+AzBsArhr+rB7/nDn0vM/BdN+xdMugdG/L+rfvj6uHwadNPeFkdHnZTmUmJRZonbDWrtZq6HGm8Vg+HT93msL5ZHba7H1aHVa4Xoxtvw40zfbm5W3ebQ+/EP9+++iX7dfi7eg/+a8/UmGwv9oW/8sXwhnLt3EY/Ih75BtSro08Ap02/CFXK8Qoce+fJ2pytHW0wI9LF7WexJ3xzmnAr3rpW+vR+vTm0V7vd6mu+Kw/9PavjPTM94Jr3iAM5rT3bHgwa///b7bY/bbZ/3XW3H7u362mY0AKLNP3QaFbLP/E30sx1f9//uN2t/2e7edvdTJsb7ED39/2ncNM+3DTXh8Nu9WLd3U1n88T0D7vVh+MN87S3X7rdbn3bXT3c/rqazp3H+qebVg+3X1Z3s3243223HzKlT2XnKR52q/Wmb2I+dd3dPt6hwT6c7v7L353+7jFe5X72sCMVmU+RL+gjyHhSkhXl+hFv9LAj6RYvVzn6QYwERen3sNQP/nPIO1WXa+R7yHwcY45Fvo1L+MN9KrE7OV/KXPUPu+3nkkrcl+d7rlyrNvxE//kaN6Th78t8kAe28r7DR6fKmv6hSqLF5+1/We3Wq810bcRI4VwoVyO72R7K1LTWGcqwkZ7oFrXNvCpTuYayGTWK14k3wEOZ8nY3TzXR3CIXKltZ3h+2MRt6kdWGTbW0eZS62ux/6f91kllvDt3uw+qm2//H8RLbhowq3u3282q9SZm6eCyG/T15xIpcd3/fr3erfqDw+rD+3O0Pq8/3mcqxe6vcOdtKqo+KzhS73h9Wh4d9geb5jrnS+e97yRe93l/3y/lWu69J2VHRSrGXmzfdpvtr9cdd97rbrbe3Garrze50z/3pnir57V+bbne9IourY8K0dJXkrvu43h+6XXebrQtvqRLfP/yR2XYMS86TGrYC99u79U06rvh7q9w5bP/sfNXc3K526RibFM8VHTX594ft/k23v++HMqDksEB+83+z3XwYDBKxBi8eC0eeYORj7FMwHLPn5dhR+iyxT93qttvhWjHVO5eeIbnr/vuh2x8yJc+lZ0gyn5WpYuqLki/4rvs79zHDDYdwwwzhXitPMZQskxrWt2ee0iCxcIWtYaN+4f1u+2V9O1h4jm1dDMpht48ucf6+iQffqEB++/DH9ha2sVNzF8einPMn/+KN0aHbHPo1iJmaxzsO4Y4Z0kxLAWRTLUWe5OFwL3IFj2VnyH3uDp9wjwjoPRaeIbjdrT+uNz+XyIZbFhE/jnzn/qLD8jNk71e71edczcfCMwQjLSJQ41rEmBRqYeJdkHGJJfogwGKqE0LcLOyFIEG2G5Inl9G6lHRE8kSZnggSTXVFckWL4uNiUH6ObLwLhEQTfaASyVgnKC7L9oKi0qOauOtWh+7q5mb7sDm82G0/v96tv6wO3U/d16vdR/wW+Fvy6yqTZ+ZoXKSSztSzRdy66z6ucDKY5dXj7Ys6df9Yqtqxo4k/uyWcm8bQ81uhdeMqQil154IRlSWVGVjJB66Mrzwfs8Ks1sWcaMtzMzvoClyNxt7b9ebjnb+hOgjTJpaPxkzNsrDMeBfz4jPX65JArXe6IGJzHS8N3SLnpzE8J3j/f43aZcP128XpogH6bSNz8ZCsj8WH3X67e736uN744e1o3IFyBVmav7vI7sXjPZHnRo7HIqffFbJM/XRLlfjwBf/wSGx7TIScGJfIHxxE0Jg3m4WPicP4qR6bwH6ry2fnKSKx8OHKL9JUJQWSzRP7SFV1Pe1TRv3OdCv64/QtwQ+d11lvN69Xh09ZvxG+Lf+n+rzpPm83g32SK4QuBkYyXk7kSaOjbYdPs5w7GljCsdGPN1zFdbX7+PA5whJgwfzWA0xoyjKeswoDP0Pu/KYCN7gFGUVOsC0p40W6Oa1zI7qcr9Ct7EV+STcHIeq3QD+PG8TaE1Asv/2Id/ZiZlP9OuR1bHju5lOHp0hFxR9vqRFHL3ecH6fe8bT0kq86Yj33jYNHqX7xMVcy3z/rCvMz0P515u+BbvsGP0xUpvAXgk8596eKO1f2myWcQz9e6a/2rX+u2b/Tsj/Q7F+m4Cd5ubl/OJzu+/nh7rC++tjTitVf73arzX51wyWf2TcXpBL9PI5nUXhYpnjhrSXgYv4biLj8oeter752O3oGS73bH7ruvreYSo1mu76970ss4fLZ0jdy9X71dbTldr2rZ0vfyNV9d7Pt5wV+DWnGMS5wh77Q90fT4TCL1cD0N3uYTWSiU7HrG24mVI2jxQ3ZD5EpAtk3F8zBX0SKn6iQ/8zfqP6f/Vyk/nOuLl6pzr5/m0rFP8ysSjV0fX6l4hztV9W8OH7fFnC3N3f6uC3qdLQlCF2hEDMVnRr+9m/TrcnQLO/YJN7DQl2bHNerOjd17uc2bzluFzVwde7mdnFy3C3q5NS5m9mI5Xhb0oxlO1vRJmT1D/jbF+4hZIgV9BEST/7NqlFlP6HO3eqeQo7/8/oKtQ80s6LV9RfqnC3qMeS4XN5nyHZ80kIMir6+e/i45hsEWDq//t/7e15HZ5cnNC7C/YkJ58xjxVbCnQu/ffjj8/pwYH5Ixr2Bnf3Azgw3hz/XT93Xu25Pz38cuDcqUNBRO46YxTs8U8MXx5tKz9UdP0MsSh7+uFvfREg28CWUp+R6tht9c7fefHwbHbwErhzvAYOWNe6MgNzNp+7mz2PJ4yDnr6u79e36kPuevIU/w9+Pv9+XswUcpVmu9U9d8IKWfS+9xUE1KvDjMLrr27nUb+1wNdy3sc7H/quwImYWdnqOp9/YvS/dbv3h63TrLN6xcBfeMmtpl672Xzdwkknar9Xx1pnODT4WfhChdGpU8qZF5kflqSQnSaWfsObzkukc/uQs4l7oZc95c2cL810bxtSr3W23+76fwomcO1/Nj5JtuCfD3IUv+kf8fQ+cw96nJ5bWTimNzuksn82ZN4l0++HDvstWfCxdKDl6eY+zC/Mn8aXuWWYGX5ZKevpe8gEL5+7lucVO3CtwafxTbbcfXnSHm0/Pv3SbQ+SnGZcpyOAe73yx3qz3kWcH1sO+ah/6v3443Rl7bvIA+DnHu7xz0xNxyaXmJzLWcyYoRh6jYoZi0hFuimKZG+wcRc6P9CTFSkfi2/6XepZ/GkDa1WG4niaoxPN3UmTJDB6Zrs3h6ZPUdLOgP+V5fKYryUweulOXy8ddGgXux+5wtfn6uvgdfewOq83XdPcz041Y5h59IUu/h4zsPepLTf5e51ZWXpzjZ32SXOD4PG+/uYsZmTx0rjaXr3Mrms3n+FaWzzMOxj8gGek8f8ciuXyGRDKRTzxY1XqnHL8yVjxlu8b8UI/z7fN+pWHx/J8oPsM2ZT41wZZ7Gvz87/qNAt8e9wmMDBbQMvlPehjemW067F6Y3Lxw4nrkCUcAPpp3gGJLJR0x0zWbPqOnqUg/eJdK9oMucIhNRKIe4SxkaZdyFk6lXWSXTX0Dl9NZVJbPTAo1w2lcB1lmi8rl18KAcRMd1KjExZECR/qpkQc/P07yyX/b7v7sdvFxnkjR/Na2+7u7eehvj4/2cBoXj/cnxnxiz5QG9s+9Qoc/BZxrAxvd2ca3ca9/gav13RJe9u/yZGppZ992m9v5fvYTbr6li6lvbcq5+FB42q1hPfzV9/kHHCXkDZFuXrx0wTh4D+4/wm9dwvzF+Vb86MzDMIMq0QQu5U76EKMsh6Y/B2VbGb9J9JYFfxheI/PXiT9b/U+UcCz3d8pxLfJjHVOL3B+KFl/6R4L2S36gyfPM/HGwQ0U/DOPS9EfJ/DG+1Y9Q/fKXeukzXnbJSx5k1VlvG5Vf9LVHBbLfP3ykOT9E3KX8XyTh1PCn+e1T568jl07X8l/5X/0dSVMXp2L4KR5dGuYnzjb6fHzW1Qj++Fmlj6r9huL7/wAlEhkQVBhNDB5ZLpsEPBhc7g+x+HMwgoetXsA78Asb+hqdW/7fD93mprvePHz+Y5A0RsSnxUuUI+9yOvo9Un+8XPY7bfbv4OjY0Ta5XGj76y/wdZ3+XmptPEt9anV8fZ71l37k72bysmPlStWGs7jDIqS4YrxsmWo4/GG8NfZRZHCpiCF39+MzCyLmLkJR9rCCkXsRxdGZDDEt9jSGHBV0GENMLOcYhhxNckZBTC5xQECOEjycIKaXdSxBlurkVIKoZPI8ghw9chxBTCyxLiRPaTCdK67DzNrKUXkYnHYQE3lIn/wyOeYAtRFvu8Ohn8WABE/X8luJm/F5MjFbF4/lmAd49IzVIiuIE4o5RzuldD+sHm66jGd8LDdbK/cZQ+lFnvHh7m6zvYVNItE8l1xAL/tJj+WXeNb15rb7e9pxmYqeC85Xy33QY/ElnnPTHf7a7v5Ma54LzlC77+7vc17qY7k5Wn5pXHZLdlwmuD+Xn6O9679hGZqncjO0BuPUR86+3m5yI2lw88fHmyvjavIlGSVgfTo9nm9wdAqXKurXfr/an3YmnE6OCzKoSJnG3faGVhP/t/zv4B998etPqz3tLZztXIzK4PcfPOE1uvXHT/RrNFU5larWmZ6sGpFKn6bKqn1Y7/aH6y/dbj9N+wZatFiF0t0qR4iUqtAZ0qW4DimVpwMj9/nm9uXmwxZJHS+VxvHq/n63/fu6P0v64XC9H06niBi/YG5kHu3kOutN9+FDd3NYf+muw/9/XO2vHzbrA3y5wCnu/rm+9bb8Cp7rXbe6+dTRpCvmE7pvri/Ht17jTuTWIo9wbN6v77YfH7rBKMfkqLWha/HiRSMXD58f7vqpqte77fYQbZZTahcxS9x7YR6Yj/LN7fU6Vo1Tjk5MLOvhzafV5uMku89z7Xzvsj51PYqf+ftObSzro29p9pFamHJucPOyXlW/rm/yjvrT47rrECX1vySy8m387G7+vN+uNzOiLmZpYX8fbm6Gk7SLPHy8d1mf2D5l0qvMjmaNX9PB4EyXuJHhWm+YLmrSoayOa41Pn6/JWZRFXg3unu0X7Gf83B1W/R5gmf0Mpvg36Gek1Gr6GdwDl3/Fkx5mfcUrfOrutzd17+x058L+pHsVac9KehW1Ptb9jI+3LutRmN15fb/b3m/33e56vbld31RGWtzWsj5zfbOkk3l9swqvqoPum0Tauu7trJd/L/e77st6+7A/pvBftoduf/3H+vClu6lykbe3tO8hlCsdfbx5Wa9224dN3c97unNZf7LygKRvhXnADD+TeUC2rwV5QI2/8Twg7WFOHlDhE5sHJL3KzANq/IrkAWmXknlAhTdMHpB0KCsPqPGJywPSXuXlAXl+0TzgWXx6wPBSERkKN/7YrW673R5MGZpcz88efnx+9cPzN2+zDF58Cn+Ivrapn8wzbT/75WS36VyJK1r0Hn/obra33e27/thOMG2UXs5/i9PJotDWBTdFdOJcXOsatBBRwWu2VchV/bK6e8iTPJVcQC//OUfFi5WncXLXHbg4GV+eFyfAViJOiHOlcRIRTL29qOr07e3WX7rbn7qvtHkeXCmY2/Vptd48m04KosYufMEbbk7Q0LOCX4jo8D8OUpi+oeEBws96SxPRSYn81cHo2GPebMWxx8Fr5hnXu+7m8Fu/lPrtZNra+GJRLICxI2AtOVJE3CsZ40ByiRGNPDVUW4EWX09jSvT3GR9n+v1LIkwvF31n4VGpfX+Avsp4wXq94/T1SF+CK1ow5np0lX0eZP1ieCf+BdmHic5jJPsi5LpTduptpjcgjtOesFFd68V1/Q81uX2WZ5OI/TKdr+z/lh+Dt9OOydkCfxJJUI+NSD5MxtsGdo9XK+zy65sGErkrm1g1FINnCT7YiF342/0j8pb6vxexm36+4DXdygoZvJgWZvz3/sW+orsurFiL/xJn1WnhfNXJmxtv2+FvAf3rWLH6daUZdpPLSaPOx5+337TiYdfFnpNezn++brfb0t8NWrs4lcTPNHGw6H1ixdR7ZDSn7y+6DGF4qaiv8OLh7u6X2JT/8cVCu7GuVG4varq2qDsMd1zH1i5GJSOvfOAb016+ztbs/1ytS9/cP1b75/vD+vMK9GBG1wq+jd39br3drQ/r/+lu/SzHLlihITy1f8Hei59z/AQM6cv3Yjnd+jex2HuY/OKn3frCF416Mr5aVAvJvf2Wo8ftP3iRQcH8KCPHmWcZzj3HHDxArF+F1jykvMg8vpz1IuPdD8//etvd3Att/mymSycK7lz+12GVKn6u6DPP/P14P8t/0Aw/0S+8X+9fk9Mxzy6fL+b/TqCnDkzxXXbiWETpr35U5Ho/GY1CcsOyhZqRt5bmHPGCy84GS+gUzgNjHq9oFC/lVWpEr9wPfpZVyp/c+VWVfpW+nsQIZLkXkZlJKT+Sc5LKPan4cRb+Reh5wHlOpE7+LfcjNTsl5VH+vJR637gZKbn+5c1FqfARzkJJepWYf1LuR/ybVze3o9wDPKsj5URqPkeFH5GZHElPknM4snyZfqsP422puv2L7a5fQfxT9zX62c64pzCLOVl8tl1v9v0oSVJ7UrJa8e6uC+tB+17iq7823a3fnynDg8SdlR6dDe37E6fOMkmPknfO9+j/eeh26cCI3VCs/8vbX1afO0ZvXKDY/mAHl1fkrPGzxrRQqc6zHtW/296/33e7QQXdxx8sdUexB4+xwNcuXK5Y7WHXt0ovHjYf13/cdVf7fXf4fnXXb6/FPXPGXZWe+Fjso3K3/7S+T7qAi5dq93NIPq4O3e3bw+rP9ebjVb8cen1Yc+8gfU+pF2Hz5Lji+Hqp9dGPlfOAiRtm6Z9mMGaq0+Kl2mHHvVcfjr/Zdsc8drxsqeqrP/6ru/EkIdEWRwoW653bckZrWqhU5/Vu2/c6t7u3vp8T14oULNVLNfsFLX7eDn7YZs42flNvY9r9pwqSnph4f0Nid5ps9fgefxH1nI3+stWZPfgi8lkb8eXrR3bji4knt+TLVob78kVkE5vzFWhOduiLKjLb9GXrwQwS6lVHE2gj/PTPl4fucyInweVKW6SzlfSHLF62WLVvtY8fYuZrAotVaSVeJS1SprFb3X/67zv/waO2B5fyW/P/zrF0cSoVCbqhU9H537t1/5NOqvFEa1iySI++qx+7v9E21ac/F733l8x2e6NrhVbvHw6jGWdgVgkuVPC9/mOdb/EilMbvPeJu2RxGTjw5e7HOg6vIpMEcV9IzBst86pVr/OlLLOBLXgT6kz0n817YsgvEfW/pTfd5e+hKtB/vKPfgBFFf7W673V23H44t4m5z7m3FMwbfHudIws3Pi1RP0wpPsy4T0/yyX0SMbf19v9517yIrL8s8D7bS6zDn+vxxtX+/WR9e79aTndPLHP642vc7vt0fDX0bbz+v/v7Han/1GcysKfP28+rvj6v96mTo23i76+7vVl9f77aHMMr2y3a6PX2Z28Hi/aPFzdHiYv6zbcN45/7R6SngYaal61ulcZNQ1jSl7v2G7VOW9JxGKvle5rdUec9Q1VzVep/bZuW5Xt5w1fqd23rl+V3ehNX6XdyO5T3AjMas4EnYdmVwZyzbiBStb8vKWq/C9ipX+Tizq+ChB3cs7QHTxc668Vv4w3a+C24v980fH/d2/TH22wyvz7POvHdQbL4W+06jhct1w3nKsfd3vpr/5e9P976ZLtNG9i4GZZmWbODjnIydihem6mkvkjk69aAgOYfq+Bdd+zmbOe11pGj+b/2h616vvna72F74SZWLD11331u49xa4JfXsw8XYQ/yjwXp1vm85X/b9aSG3q93XMNV6//jOyt17NLUPph5f3sIee+v1v224/9v8suNDy8v8yjnwPNOn3BrI9F7ipQvWAR5X5Pwj0dtPaF2c7OT385lnTfj6c6KHn+trft++3tfX5xVQS73iwaKqhd82jsmHPz6vDznfBFSwvF/x67r7KwUnaJnZbAIaTKOJia8VZAJL54GJUn22j8E7ktnbyPUo2ePB3hT0exhPsuKO6bdHis6P9WT/nb1hnv4/93n17VSuoK+XGf0jyxU14PEJlqoF2KGK+Et5VlQbxl5V1gjg0TRCDo1oJ970fyyMtENjgBlTakVoYEboYjtSTM1IUWrFqKkVo0qtgPdb9nb/1d1+7Hbg3KTzhYIMPH4yFzGXdzzXwLn4Sr715nqyEwpVGxSrVUI7tFMZfi/2tMbHNVy0RGUGxWqV7nyJ6OFmVBEUn6mMl/9EdFOrftKq/ZmZ17vtHe05U8FhuVqt7d1ttz9cF1QGfMdM/aIXHbunwAfcsvwaTF3t6CQkerlkXf3gzhyrxzDKe6qBw/Fn+3n7pTuutQKTa8nVova4v/cF7vAML+W/LX/m5frGb655DSemTuxe4HvwWxs5HPFhvb/u+qkwSeFBwVlqX9bdXzlix3L1Wv4/KaFjoXqVzJ9tgV9q1x0edsnAu3gsVq/0Zb1f/7G+Wx/SUTEqWqTI1a5/hCB/d9p3iHGDFs2vfTfbzf6wW62n/fKk/YvxvennnjxQ3nt4STtP44vFrVfo4keaxfPFKruGMWtqrQrNmD1erLErRdxsuFZj1ai41XCtxirze9X9Wj9vbx8mva3zhYIRN7gzIbF0kdqScOBSfLbNdt/dXp/S9JQiKl+r/WG37ja3KcVzqVqdyNdqKJL8VvEK+8Pu4Qa2dUORc6kCnXiUfY/B77TAnHHeiDV2kBe4WMauY6JJfM0qx98k/BacLhW3AWG9Y6RlOV8st+vJQ8zu48Viu2+6/fZhN6Erw0v5EQR2x50Y4jfJHbmUvwprqsIuwIqooPcTpgIwtW1cYG5tA9aStY24WF7bkGhWbYsqwzfpG0Ak7y8Uvbk7v1ybt3UxLMc8Q3Ar9pVad3fwIzUUeixUq5KXrw4lS7NVXt+noA8oGxhqnkvN0QF7cCOhY7EZSptVf+57WuqxXK1WpIcxlEn2MCYK8Rr0oo+2qJ6/ml+XWN/PtnIfIPhW1m5PtJJNN9aKvzH4hT9dKv5ihhsjX+LzxWK7EYtVtt6vuYR0cLXOcix3PF+sshtPSgdXqyxH09LzxSq70cT0fLHKLvfL1f1uv4KjpB7/Xmatnw+7X3/kj/yIlMpvmT4fDUS26efsX4B7I61J5FnS8+Cu8e6ErFv49mU8A/HCusK2sUltGhN+Ddf3dFTz+Nei6Dreg8J1eKnI5uvVbr/efHzT7R/uaN9jdC0/OtebL6u79e2bbrWfMIupyYtj8d2pOH7vYz9zlH+GRwSkHEgdFpDlh7eXFj4VK1Oa/ILd5na9+ZjezTdesGB+Z79kLBy/8Qh/r/fdDW2CEloXnJ3I64g/ZnzF2XU/nfH6HkyRTDk4uXkprwDPT/nCsv1yDz6v/va756/QjNeUL5Obl/IKfzNS7qQ+FeV+7LvN7WSBaMqNx5uW84I7myjtTt6BRRV+rT9uVoeHXWl1Gt63lC/gu55yg/20Z3kwaX3vHj72p0GCbVWGl/Jb2Jf/+OXVm+fX795c/fL26tm7l69+uX77/vufX7579/xNSuBi/XGz3XXXw87U3k+jPnBRMHyEiFd17iziB37jb7vDYb2ZLGYfXyzrCW33GduNRkoVKyVFFt/dLmI0Z3s74HBMPbq/XVQ+Y4O7fP0/tre0px0TPhadqxjfUy8mnLOpXr4+s6tezIGsbfUKPIjsqxeVT26sl68NB4Rjwomx4BLVyd56cU1mc718RfStiyjWx9Wkndqtv6wO3U/dV7QNGbla1gLuttsPL7rDzadnq7u7P1Y3f06M0wKV9o+Hu0XNH68XZEDgpDtsLnHU3dTHKEMH29FHJBNb0HOa8Xf4lncgXK78fd7CAxAm1/N/n8TbGtrLf1snL+NP9Gb113GrcyJ9vlD0hgI+zDmymClZociPXMIyBX2TyJqUuNmM44mx39Gv9YTyMuIs5C3SBe03o8s24cW60TOHEx5kHDac8gXHWOQM9vHFkjGp/hzU7nqFn4+ciz4szD1U6mz0vS+VofhYcI5aNH4KTmKPKk1+pfXn+7su+8z0VPGyVsgfAvdTd9ycoD8l44fO9zT8fi2HT2AHs6x75njxavcvf+re8chBfEpk1j1lXvSHDz17PHsoPcKbvqEoj0ye25apV3h+W8Zjx1d/gXPccr1MnedW7xd/rluuf7nnu9X7GTlhLdfB5Elr9Z7NeG3f6F2lTj7LdS//BLT5vnInoZX6m3ci2gyfYWKQ7WXihLR6v2JLJHM9S6+ZnOEb6CXkusX2HKo9wqsNc51KrdCb4VfklLdsz5KnvRX5Nvnyh/A9H0lPvCSXC2aOQCgO7V2kUPjEyfTMkB9BuwO1B/fw7UvcB/pOHw9kOI5/ET/o5fx3+udkRypo64LbeWriXFzrGtTyqOA1W69zVb/000rydUfFi5Unv1t/3sTbw6rfZ4z2TEbXivrWg/p47KG/jaBNpmR+jIS9x65BqCSsX4zujLxM5lkKOW7SnTTIrfAGRVbKET68snxgYuLFcT/BjKCYFM2Pig9dP0H9a7eLTORLqlwgC8lXMn24pH9hB70Z7j0aWM67x80Hj8ZPr2CSAKb9ZE19O4/nO7q0f2DuS45T7OyXGk/4FiHiR26TwHnBtAnHDYTXWzzdgylZsEqs+7B6uDswWxKmZC6OJrJ2I+Sejvfw3d+b5/0cvq9vu5t+wO2XLd1gIdfRw98bPxvw6767+bDbft5s41sw5PnL/IZ++u7Vx25zyGjZQeECDlXROsUEZ7ZP6KHnt1DZzi7vI99KMY7ltlMF3vAtVdSX3LaK9yQV6fldW1g8P9r/WB8+r+iQSJb5i8db895Fbp/y3G9OxXCq350fv8W97zrXRrcv69nh067bf9pOFtHlOTa8e2G/0rVsXpqQ8oapaTwyjxeszVfTQnMV3nY390KbP5uMhmNadtmsOGK/MC8GT1SfGcdcKsqN8z3iYz/mTG7gs35wMZLxnrIigtXokepb/9nO0gPFF47GqERpQMJHmxGTccfKwrLEr0Rkxl3KDs6EN5PYGWx8Sx0bXCqKx+OKYGLu+NdyS3TP2fDHYjvTzWuPfy22NNm+Nvyx2M5kA9vwx2I76E0Xvuf96HipyPcyUmrZGRKcSOG0iNhTFc2FYP1JTYAo9ICf9cB6kjvVocajolfyeMcy+pmrJ3mXipdOFnrJrptkXctcNFnjz3RWStoTbipKoQ+lAbxk1LLrNVkvMhdrFvqDV2qyjqSWaRZ6EA4hvD6fQni9Aacbsh7FTSziIRyjYh1KDE4V63PrRxOO5C0eLfUo0oflfUl2XUu9SMza4r3JnqpV6RU3PyvLs7xJWaXewZlYvD+J6VeFHsTmXLE+pCdalXoxzXZ4B7gkp1Abz6Ni5VOTp0o9iMyY4n1ITpNKe0F797/2u2b0feZ0F58rumw/P6lU2NlnH7Kox5/2LNXtr/GF7/unfcpNAKp9K39NiVSgxpNIzzbtS7J7W+NN1Q+1+K+T+kKnXcr/TM/xj/tW5/uY98Gu8hN+tTM8S3y6a3yJfb/T3qQ/4lX+TL/kGa5wn/MaL/A3Pe1I6sNe5Uvk657hTfITn+nP5Dvf7dYfvj6O+l7tv25uwOKvWLGiEcPhUWbTo/LI1WrL/SFpr2HyHClVMJMQHxHD2U2fiBfzPeFD7OS5LGfSa04LvTowZ+GxHh2yTsJLe0Mj4rfV+vBiVBnwJjDRcvlR4b8veIU9b/3C35n6FMSfhPkObB8Ob6cjngl3jjeyo5zF3vwVbni5ue3+ngyRJBzq7/2w3a0f7633aRIfeHV01rromK1nvjMUsRguzrD7Q3fXHfAJH/GCBfkXnBudsJw8AYR5hNg4bMUDXjzetJQXoefYL+0AHc+UN5Obl/IK9KhSvrD9qSwPcqIycoYDV/RbROb4AIaa2Eyd/LCrfNCLwY3LeVMcpWOfZsRpxQkZaX+KYzXjBA102+OyqAwPH8sWzC6fLiVMW+YPJeGfIjrSsLnNakmJJ4/3LejLdLpPhiPcJJ8qL4rrC3FoRoVJ+pZZY4hHxVUG+cHXGf9/Gd2OQbll23ZquLBhH/pfW2MnLhTU1gz9griceFIVkxk+JeNx4klBLGL9jDjM6miMSn6DWJzTzRg/xax4LDjUqsKH0phcoGuR5VdeXFZ3LGI+ZMRmXrdiXHTBXgUwXBwUS/QpkB9FXYo8T1I9CuRGfociz4fSOrJEdyLPs7xaUt+ZyPPiCzhDI+3G6a5ZfshzVb169uzV+1/eXV99//bdm9Pu2i//8cvLX/5x/cPVu6vrt1f/evfo5ZfVbt3b2/9H1n1sBR468frdq7fX3798rdT1m+f/eP5vJEjLlBl/9urlL1Gr/cUycy+uosZeXJWZ+vHqzQ/Pf3n+Q+LJx8VyJX54/uLq/b/eXf989e/rf1y9vb76uf/VgAguWCrz7t+/XD//9+vrt8+fXb948+rn619e/caIoeI1ku9e/vz81ft3vZ2E2qBkrtDz1z9d//jqzcv/20f482dvgQItkmv6xcs3z7+/evv8+ur9ux+vX759e/36qt/VHkVqtGyu2GMAvXrx4u1zFAOkRK7hPmSu3v9w/evVv66//z/vnqM3NClTYvzZq59/fvnu+Q/X/XvmFKYFS2Se//vdm6vrFy+f/+sHVmVSrkSk/+FSL2pUpsT4P397d/3j86sfnr+5/t4oVgMVLZF6//KH65+e/x9WY1Sm1HjqJY3KZBt/+Uu6KZwWyjX/S3f4a7v789322afVeniK/dk4LVJs+sXq4aY7XL1+yRl/LFRs/oiiEvbPpYoFjv8YbVMNFAbFyiW2t13iAY5Fik2/7u7vk2/nsVC5+V1/MkHK/KlQrvn73fbzet+9eLj7sL67627JZupnCVwwV+bN1W/jM2NwzxEVq5X47eW7H9luKn9Druy75/9+d/38l2evfhicOHMWGV5mTZrBeMrm62u/WvOn7uuvvaXN4d327WG33pw3dTlNSNj/B1M6WzAci7LeHM9AXUGdSaEi83RbO2I4Z1u7gck/VvvOqPe7ux/GJ2OfrZISxYbfbfvDsfec5WORbNPrjy/738bf9K/nyPK4RLbhh/Xd7QDiI8ukSLbp3pN32++9Y9jncYlcw34Gx6vds+3mS7c7TBbFnu3jgrkyz376oT8IBNg9Xsn296jvlyr1Owr9+PB5tXnTrW77ev5u+2rjP9roAfLurHbkeP+77chujiP4zlJHmJ+u7jc73vbLeGnQxGy4Xmj0OP+p76Vsuh2d7TbRgMWzJXfd6tC9+uO/upvDFRkiHyhNS5UJnMZcUxKkXJmI38kypTAsVGa+X2bh98TvbvPeV+yGXNlbf+9Pg6HQs8LjtTJjg9Z1dNoWNUzK5Yvsu916dbf+n66vu+G0BKbyseUrRB/7GLzWY7EKiekeGlAib++MgUS32T/suu+327tuhVro0fVcox/6g3fGp0r8sQbGYbkikQz7tab/+dtPMZP//O2nIlMBSjI+PhYoNPuly3gBpFiRxGj+dFyCFMuWWG9uX6x3+8MvYceZbne1Q91rWC5b5G673b3b/vZpe9f9uH1AX01aJNf0x7CRYfdm9RffxcQFS2X8oyc6s9Gys8VebHdv134ZXKHy6MYaN9abj/REcCx7LjhPpvf42KJG+otZ9812Iv+njt1W6sJ0yzNGeFp4vtxv68On4TKOHNXjPaXiZP3qaIP7qSwoXSo4bCXTbxeUXkAw/X7jN+XLo07Xx8QE+LEBf1Dvi4e7u1/wEAYtUmo6jDW+7XZfhhulTO2PypWIPBw+dZvD+qZfPZVuOpnyBaLP+1MruaZyVKLA8DkedgeUeNAiBaZf7vdXD7dXm9v369tfV3fYOClUYP6n7utdt6fnGo+Mj4qUm/7nbz9FXsmgQIHZ16uPXV/hXv3x4WF/szp0t88edvst6rcwpXMF+0kibw+7d9sX6+4ONUfjAiVmf+2nXKBXc76Yba77+932an+zXkeHemmRXNPr/fc3+3hKPbxcZLJPmWL2+mtFxl6s/+5uY2OupESR4ZfD7fGIyZepTfKmxkzcFr+73cTUcJM8aiu1Vd7E2GCfPGorsVvexNRgqzxqKrFh3sRU/MWXvfZolRhcLTL4ngmK96VB8T4eFO8Lg+I9ExTvS4PifTwo3hcGxft4ULwvDIr38Rdf8trvtjd/Pr9f320/PnRo6TbUSNxUKP9zd1j1M0WL5JmbCuSjLW9Zs/uAumr+7/lGnq022836ZnUX3c59aDpaOl8wS2eG+c/3h69hISy2fL5eYHTTU8hbeAwtVmFuKJYNyJbTCSXyDcdPIBoaLzt8aCTQH6CxX+9zq1a8eL7ksS/7dnyY0FBlVCLf8L9Wu49dlGeNrucb5c4KGRovPSZkKpJV38pPaBgJMW+n9MW87ja3683H3MiJF8+XDHSlP+Hv5eb+AVc0UqbAeHy7+5H9sp3uxxLjw6Gx/XGZUuOxbdKnEiU7pI+F8g+kHqnOO5aauBDtp5Z2UlPbRA9t12wWPRLL2rVuqFi9d91U1s/b789Bjws9Fik0ffpwvtx82MatD0sVCvy42t12m+6Wd39YKlfg86b73HeU3m3fdh0atBgXyDW72e4+e4r6/cNoQdLZLimRb/ivl/1pDdvNLUrgh5dzTW492efmpJES2YZ95401PC6Rbfjh8OrDm359TWKYEhfMlblf9eOEr1c3f/rRkH5s7F8d6qzigvkyH9eb1cGPvUXH56aFasxnDARyxfMl17vu9sXqlIPFx8QiJfOFdvsu1fmeFioy/8+/Dj92q1v4uR4XKDLbT0rBlWJ4Odvkdt+tb6PkaXi5wCR8m9v86aN92YBW/GT4iLVBiXLDcawzKVNsnO4JBWwfixSbTjEjXLBcZrf9st58zNEZlcwV2kVnG+/KJhrv77ruHpjxf882cn+3PkS6CI/Xso0dz5Ne/8+pLqL2C5TKF+g7qtzXkZTINXz4tNv+1Xvz83r/eXW4Qa9jUibb+O5h038R4k06KZFr+Evo6R7z85ebN6O9ys7mYblsEb9N5GB4IZYk4YLzZPov6j//+vNqcxtFiHk35rrx12q3efnhh+5Ld7e9j4yATcog4//55Du/x913//v/fdyv9H9/J57Kp+67J9996Gne/rv//XvQffLdzfbzUe12exOG3v7zWOzX7uaw3fWFQ+n/uPzuye+XT6x7emnsf/7nk99PN/sL/g8nG+e/+Bub75783qAbm8mNzehG8d2T38UT0z69bJvRjWJyoxjdKL978rtEinJyoxzdqL578rtCN6rJjWp0o/7uye8a3agnN+rRjea7J7+bJ/byqXZqdKOZ3GhGN9rvnvxu0Y12cqMd3dh+9+T39omVT51uRze2kxvb0Y3uuye/O/SMbnKjGwdAHw8NjJ1mGjwNiR4fPg160gYE0DiCmj4uGoGetpkGUTOOoqaPjQbGUTMNpGYcSU0fH42Cbk+DqRlHU9PHSAPjqZkGVDOOqCYaUs00pppxUDXRqGqmYdWM46rpo6Ux0OlpaDXj2Gpc1OlpdDXj8BKXMafFNLrEOLqEjy77xKin6lKOb55GlyDtk4+u9okUT6UcR5cATdQ4uoSPLgfdnkaXGEeX6ONFXD7R4qlrxu9aTKNLjKNL9PEiGlQpxDS6xDi6RB8wAtYoMQ0vMQ4v0UeMkPDmaXyJcXz1ePp3oeDN0/gS4/gSfcgIDW+eBpgYB5jsY0YYdLOcRpgcR5jsY0ZYePM0wuQ4wqT/BMLWWk4jTJKvYB8zwsGbwYdwHGGyjxl5CW+eRpgcR5jsY0bCCJPTCJPjCJN9zEgYYXIaYXIcYbKPGQkjTE4jTI4jTPYxI2GEyWmEyXGEyT5mJIwwOY0wOY4w1ceMhBGmphGmxhGm+piRMMLUNMLUOMJUHzMSRpiaRpgaR5jyHS0YYWoaYYr0tXxnC0aYAt2tcYSpPmYUjDA1jTA1jjDVx4yCEaamEabGEab6mFEwwtQ0wtQ4wlQfMwr3MKcRpsYRplz0c6OmEabGEaYvo18MPY0wPY4w3ceMwv3baYTpcYTpPmYU7BfoaYTpcYTpPmaUhTdPI0yPI0z7CGvhzdMI06RH7yMM9nc16NSPI6yfsvS7hj1ePY0wPY4w3ceMhhmTnkaYHkeY7mNGw9jW0wjT4wjT8QjT0wjT4wgz8Qgz0wgz4wgzfcxoWKvMNMLMOMJMHzMatttmGmFmHGGmjxkN220zjTAzjrB+DtjvGrbbZhphZhxhxieNsN020wgzJG/0EQbbbQNSx3GEGR9hsN020wgz4wgzfcwY2G6baYSZcYQZ38+H7baZRpgZR5jtY8bA2LbTCLPjCLN9zBgYYXYaYXYcYbaPGQMjzE4jzI4jzPYxY2CE2WmE2XGE2T5mDIwwO40wO44w28eMga2nnUaYHUeYNdHGwE4jzJLRCRttDCwYoBhHmPURBmPbTiPMjiPM+giD7badRpgdR1h7GX3mdhph7TjC2j5mLGz022mEteMIa/uYsbDRb6cR1o4jrO1jxgp48zTC2nGEtX3MWDjM0U4jrB1HWNvHjIUdmnYaYe04wto+ZizsVrTTCGvHEdb6oQrYrWinEdaSMbA+ZiysGC0YBhtHWNvHjG1R5t5OI6wdR5iLR5ibRpgbR5hrorXKTSPMjSPM+QhzaDzVTSPMjSPM9THTXqJndtMIc+MIc33MtLDRd9MIc+MIczr+wqYR5sYR5kz8hU0jzI0jzPUx08LPjZtGmBtHmPPDrPBz46YR5shIa7wf5sBgKx1tjXfEwrXx7YO/He/v46aFH7twjd5Pxlwv+9Bp4fcuXKP3k2HXSx9r8JMXrtH7ycjrpQ832K8K1+j9ZPD1so+hFn5+wjV6Pxl/vezDqIW9q3CN3k/GYC/7SHKwgxWu0fvJOOxlH0wOVrdwjd5PhmIv/UA/HjS/BKOxlyT+/AC+g6HfoPH+yYB/H08Oxx8c8ifx54fxHY4/NOpPh/39SL7D8YcG/unIvx/Mdzj+0Ng/Hfz34/kOxx8a/qfj/35M3+H4QwiAMgA/rt9c4gBEHICCgEACLnEEIhZAYYAf4G8ucQgiIECIQCMCccIxCKhAQ7BAE7jAJQ5CQAYaggaawAYucRQCOtAQPNAEPnCJwxAQgoYggsaP+jeXOA4BJWgIJmj8yH9z2T4x5umlJVQGkIKGoIJGxDOIBsCChtCCRsSTiAbwgoYAA7+g7ffmEtcEwAwaAg0azwGaBtcEwA0aAg4aGe/tNQAdNIQdNDLe4WsAPWgIPmg8EWgaXBMBQWgIQmg8FWgiBBVQhIZghMaTgabBNRGQhIaghMbTgabBNRHQhIbghMYTgqbBNREQhYYghcZTgqbBNRFQhYZghcaTgqbBNRGQhYaghUaGOIQjmQ2gCw3BC41i4hAAhoYQhkYFCO+eaP3UNpIYAIFIKEOjAoi/fCL1U2kFMQACkZCGxsODRjTYAAhEQhsaDxAaIZ7IHvXSd4CQPAlEDxEaTC8bAB0aQh0aDxIaTDAbAB4aQh4aDxMaoft3oDQJAwAfGkIfGg8UGmF6A1rRlwgCkRCIJiAIYZ9I+VQ7+gggEAmFaDxYaASOZAAiGkIiGg8XIpEMWERDYESjBRPJgEc0BEg0WjKRDJhEQ6BEoxUTyYBLNARMNFozkQzYREPgRKMNE8mATzQEUDTaMpEMGEVDIEWjWyaSAadoCKhoAqmIRDJgFQ2BFY25ZCIZ8IqGAIvGM4gG4/UGMIuGQIvGxGePNABbNIRbNB5FRPoGgFw0BF00nkY0GPE3gF40BF80nkg0GPM3gGA0BGE0nko0GPU3gGI0BGM0nkw0GPc3gGQ0BGU0nk40GPk3gGY0BGc0nlA0GPs3gGg0BGk0nlI0GP03gGo0BGs0nlQ0GP83gGw0BG00nlY0eApAA+hGQ/BGY8M8OVwTAOFoCOJobJgrd4mGJhtAORqCORobHyNsAOhoCOlobHyYsAGsoyGwo/H8osHTERrAOxoCPBrPMBo8JaEBzKMh0KPxHKPB0xIawD0aAj6aQD4UrgmAfTQEfjSeZzRKPzHNUyvIjwj4R0MASNMy7SFAIA1hIE3LfZgBBmkIB2la7sMMUEhDWEjTch9mgEMawkOa1jCfRYBEGsJEmtYyn0WARRrCRZo2BCJujgAaaQgbadr40HUD6EhD8EjjmMFrAEgaQkgaDz0w5WgAI2kIJGk898CgowGYpCGcpPHoo1G4OQaopCGspPH4I/ICAS1pCC5pPAGJvUAQg4SYNB6CNAp/DgA0aQg1aVxoDPHnAICThpCTxsOQRuOOCYAnDaEnTcAnGjfHAKA0hKCIy3i6LABBEYSgiMv4sI0ABEUQgiIu46hOAIIiCEERl3FaJwBBEYSgCE9EGjyLSACEIghCEZfxD7IACEUQhCIu4x9kARCKIAhFeCTS4PlEAjAUQRiKuAwxiGcbA4giCEQRlyEG8YxjQFEEoSgiLJrQBo2+CoBRBMEooolnygJgFEEwighrJzSE5AJwFEE4ivBcBHNyATiKIBxFNMwkd8BRBOEoIqyiwN8yAUCKICBFeDASaUcEICmCkBQRSAqepSUASRGEpIhAUvBMLQFIiiAkRQSSYi5xFIEwpGsrAknBM7YEWl9BF1gEkoJnbQm0xmKyyMLHIZ65JeA6CxKHgaTg2VsCrbWgiy0CScEzuARab0EXXASSgmdxCbTmgi66CCTFwF6FQOsu6MILj0Ya0z7R8qmilQmtvaCLLwJLMTgS0foLugAjsBQLv+oCrcEgLEUElmJxJAKYIghMETKs9cGRCGiKIDRFBJqCp0oJQFMEoSki0BTcJAOYIghMEQGm4NVKgKUIwlKEjPcNBUApgqAUEVCKxTUJoBRBUIoIKAVP+RIApQiCUkRAKXjalwAoRRCUIgJKwVO/BEApgqAUEVCKhSPYArAUQViKCCzFwhmKArAUQViKCCylhRMNBWApgrAUEVhKCycbCsBSBGEpIrCUFk44FIClCMJSRGApLa5JgKUIwlJEYCktnHgoAEsRhKWIwFJaHImApQjCUkRgKS2ORMBSBGEp4ricA0ciYCmCsBQRWEqLIxGwFEFYijiyFByJAKYIAlNEgCkONygApggCU0SAKa55otunhozCCwBTBIEpIsAUhyMRwBRBYIoIMCX2CGg5JInEAFNijwAikcAUEWCKw3UBwBRBYIoIMCX2CCASCUwRAabEHgFEIoEpIsAUh2sjgCmCwBTh2Qhe6g9QiiAoRQSUEnkAwFIEYSnChDjErQGAKYLAFBFgisOtAYApgsAUEWCKw60BgCmCwBQRYIrDrQGAKYLAFBFgSiThBDBFEJgiAkzBE88EgCmCwBTh2YjAE88EgCmCwBRhw+Ah/rABmCIITBE2DNzg5gTAFEFgivBsRFziygxgiiAwRdhA9XBVAjBFEJgiAkyJ1AUAUwSBKcKGTiKuC4CmCEJTxJGmGEQCBMApguAUcVw8grMdgFMEwSnC0xHRz1xDHoBIJDhFWK5FBDhFEJwi2hCJ7om2Ty/p4AfAKYLgFOHpiMCbZgiAUwTBKcLjEdHgugB4iiA8RXg8IhpcFwBPEYSnCI9HBN5AQwCeIghPES33bQY8RRCeIjweEY2CHxbAUwThKcLjEdHPHQNjWICnCMJThMcjAu+KIQBPEYSniMBTYu8ARCIBKsIDEjwCBXiKIDxFhCUnje31lSKvEAAVQYCKcCEO8XcJEBVBiIpwIQ5xLxUQFUGIivCERAg8HA6QiiBIRQSkEtkxAzAVQZiKCMtQBK5KgKkIwlSERyRCyCdGPHUETQrAVARhKsIjEiEUNgDikDAV4RGJEBobQFto0D00fIsoDDIgAVSRBKrIAFWExQbAVhqEqkhPSYRosQGwnQbBKtJjEiEcNgC21CBcRXpMIuQlNgC21SBcRXpOImSDDYCtNQhYkQGsSBiJEpAVSciKvGQiUQKyIglZkZdMJEpAViQhK/KSiUQJyIokZEU2XCQCsiIJWZENF4kArUiCVmTDRSJAK5KgFdlwkQjYiiRsRTZcJAK4IglckQ0XiQCuSAJXZBMiEW/TBuCKJHBFNmEzIdhTlgCuSAJXpGclQsKOrgRwRRK4Ij0rERJ+3CWAK5LAFelZiZAw6ZMArkgCV6RnJULCJRoSwBVJ4Ir0rERIuA2VBHBFErgiPSsRCn5cJYArksAVGbayUnCDNwngiiRwRYbtrBRu0gBckQSuyLClVewlgkgkcEUet7WKvEQQiQSuyOPWVpGXCCKRwBUZtreKvUQQiXSHq7DFlcK1EW1yRXe5klwkoo2u6E5XkotEtNnVZLcrLhLhhlckEiUXiWjTK7rrVcAreHsfiTa+ojtfeVwi+jl0U8Aj0eZXdPcrj0uEMtgAiES6A5YMkQgRk0SbYNFdsDwugSN5Em2DReiKVCEO8Y5ngK5IQlekhyUC79sjAV2RhK5ID0sEnn0kAV2RhK5ID0sE3r9HAroiCV2RHpYIjRs0QFckoSvSwxLRz34BgQzoiiR0RXpYIjTcvVICuiIJXZEelgitYRwAuiIJXZEelgi8s44EdEUSuiIDXcF1GcAVSeCKDPtl4d15JIArksAV6VmJ0DDvlQCuSAJXpA6B6GCLCuCKJHBFelYiDBxCkgCuSAJXpFZMcwTgiiRwRWrNNEcArkgCV6Q2THME4IokcEV6ViLw9BUJ4IokcEV6ViIMrowArkgCV6RnJcLgLyuAK5LAFRn21TK4MgK4IglckQGuGNzPBXhFErwiPS0RBvdzAV6RBK/IsFQFT1+RAK9IglekUUyLBvCKJHhFeloi8J5CEuAVSfCK9LRE4H2FJMArkuAV6WmJwNsDSYBXJMEr0rRMowzwiiR4RQa8gvcYkgCvSIJXZMAreJ8hCfCKJHhFBrxiI9tzgkgkeEUGvBL5rgC8IglekQGv4BksEuAVSfCKtIpplQFekQSvyIBX8BQYCfCKJHhFBrxi4WbJEuAVSfCKDHgFj4pLgFckwSsy4BU8Ki4BXpEEr0gbIhHnvQCvSIJXZMAreBKOBHhFErwiA16JfNoAXpEEr8iAVyKfNoBXJMErMuCVyKcN4BVJ8IoMeCXyaQN4RRK8IlvNfFgAXpEEr8iAVyxO2QBekQSvyIBX8EwmCfCKJHhFBryCZzJJgFckwSvS0xKBZzJJgFckwSsyrFeJfNoAYJEEsMgAWPBUKAkAiySARQbAgqdCSQBYJAEsMgCWSKsMAIskgEUGwBJplQFgkQSwyABY8GQsCQCLJIBFBsCCJ2NJAFgkASwyAJbIdwEAFkkAiwyABc/mkgCwSAJYZAAskQ8LACySABYVAAueDqYAYFEEsKgAWPDGVQoAFkUAiwqAxV0+Ue1TeemIAbCbNAEsKgAWB6uzAoBFEcCiLpmMRQHAoghgUZdMxqIAYFEEsKhLJmNRALAoAlhUACy4VVYAsCgCWFQALHhKnAKARRHAogJgwRPSFAAsigAWFQALng6mAGBRBLCoAFhwb10BwKIIYFEBsOC+sgKARRHAogJgwRPCFAAsigAWdVy8AqegKABYFAEsKgAWPKNMAcCiCGBRAbDgGWUKABZFAIsKgAXPKFMAsCgCWFQALA7mTAoAFkUAi/K8RF7C/oECgEURwKICYMGNqgKARRHAojwvkXhGmQKARRHAojwvkXhGmQKARRHAojwvkXhGmQKARRHAokQ4yQF+2hQALIoAFuV5icQTwhQALIoAFuV5ibzEoQwAiyKARXleIi9xKAPAoghgUZ6XyEu4Fk0BwKIIYFEiRCIOZQBYFAEsyvOSmAcAsCgCWJTnJRJPCFMAsCgCWJTnJRJPCFMAsCgCWJTnJRJPCFMAsCgCWFQ4UwRPCFMAsCgCWNTxXBH8YQGARRHAosLZIpG6AACLIoBFhfNF8NFMCgAWRQCLklwkAsCiCGBR4ZwRPKNMAcSi6FEj4ayRBlcmdNoIPW4knDeCZ3QpdOIIPXIknDnSONhHQqeO0GNHwrkjAtcFdPLI5OgRH4kC1wV4+giJRE9MJJ7RpdAJJPQIEhVOucF1AZ1CQo8h8cREClwX0Ekk9CgST0ykwKGMTiOhx5F4ZCIFjkR0IglhLMojEylwJALGoghjUR6ZSLybmAKMRRHGojwykQI364CxKMJYlEcmUuJIBIxFEcaiPDKREkciYCyKMBblkYnEM7oUYCyKMBblkYnEE3EUYCyKMBalw5lLOBIBY1GEsSiPTCSeiKMAY1GEsSiPTCSeiKMAY1GEsSiPTCSeiKMAY1GEsSiPTKTEkQgYiyKMRXlkIiWORMBYFGEsyiMTqXAkAsaiCGNRHplIhSMRMBZFGIvyyETiiTgKMBZFGIvyyETiSSgKMBZFGIvyyERGzlcCjEURxqI8MpH4pCMFGIsijEV5ZCLxaUcKMBZFGIvyyETiE48UYCyKMBblkYnEpx4pwFgUYSwqMBY8w1MBxqIIY1GBseAZngowFkUYiwqMBc/wVICxKMJYVGAseIanAoxFEcaiAmPBMzwVYCyKMBYVGAue4akAY1GEsajAWPAMTwUYiyKMRQXGgmd4KsBYFGEsKjAWPMNTAcaiCGNRbYhE3KQBxqIIY1EemUg8FUcBxqIIY1EemUg8FUcBxqIIY1EemUg8FUcBxqIIY1EemUiNmzTAWBRhLMojE6kjR8aBSCSMRbXMhG0FGIsijEW1zIRtBRiLIoxFtcyEbQUYiyKMRXlkIjVulQFjUYSxKI9MpMatMmAsijAW5UIk4lYZMBZFGIsKjCXSIgHGoghjUcdFLLhFAoxFEcaijotYcIsEGIsijEUdF7HgFgkwFkUYiwqMJdIiAcaiCGNRgbFEWiTAWBRhLMojE4nnZCnAWBRhLPoyRCJEJBowFk0Yi/bIROI5WRowFk0Yi/bIRGLqqwFj0YSxaI9MJN6PRwPGoglj0R6ZSLwfjwaMRRPGoj0ykQY2aRowFk0Yi/bIROIJTRowFk0Yi/bIROIJTRowFk0Yi/bIROKT1TRgLJowFu2RiTT4bErAWDRhLNojE2ngyLYGjEUTxqI9MpF4PpIGjEUTxqIbpp+oAWPRhLHohuknasBYNGEsumH6iRowFk0Yi26YfqIGjEUTxqIbpp+oAWPRhLHohuknasBYNGEsumH6iRowFk0Yi26YfqIGjEUTxqIF00/UgLFowlh0YCx4XpoGjEUTxqIDY8Hz0jRgLJowFh0YC97YSQPGoglj0YGx4HPwNGAsmjAWHRgLnhWmAWPRhLHowFgsnDCtAWPRhLHowFjwnCwNGIsmjEUHxoLnZGnAWDRhLDowFrwxkgaMRRPGogNjwfmCBoxFE8aiA2NpL9HAtAaMRRPGogNjwfORNGAsmjAWHRaxRBpVwFg0YSw6LGKJNKqAsWjCWHRYxBJpVAFj0YSx6MBY8JQqDRiLJoxFh0UskVYZMBZNGIsOjAVPqdKAsWjCWHRYxBJp1gFj0YSx6MBY8JwsDRiLJoxFh2Uske8CYCyaMBYdlrFEvguAsWjCWHRYxhL5LgDGoglj0YGx4EldGjAWTRiLVswSUw0YiyaMRQfGgmeFacBYNGEsOjAWPKlLA8aiCWPRgbHgOVkaMBZNGIsOjAVv0aUBY9H02PfAWBzu5qGT3+nR74Gx4DlZGp3+To9/D4wFz0fS6AR4egR8WMeCJ3VpdAo8PQb+uI4FTurS6CT4yVHwOj6pS8PT4EkkBsaCp1RpdCI8PRI+MBY8pUqjU+HpsfCBsTi4Pb9GJ8PTo+EDY8HzkTQ6HZ4wFh3WseDphRowFk0Yiw6MBU9o0oCxaMJYdGAseEKTBoxFE8aiDReJgLFowli04SIRMBZNGIs2XCQCxqIJY9GBsTg4Z1sDxqIJY9EemahLeFiHBoxFE8aiPTJRl3BpngaMRRPGoj0yUXhKlQaMRRPGosM6lkgnCzAWTRiLDutYIp0swFg0YSz6yFhwJwswFk0Yi7bMeKIGjEUTxqItM56oAWPRhLFoy4wnasBYNGEs2jLjiRowFk0Yi7bMeKIGjEUTxqItM56oAWPRhLFoGyIRN+uAsWjCWHTLnEKlAWPRhLFoj0wU3i5OA8aiCWPRHpkoPLlPA8aiCWPRHpmoS7htoAaMRRPGoj0yUf3kPtAeAMaiCWPRHpmoS9ysA8aiCWPRHpkoPLlPA8aiCWPRHpkoPDdPA8aiCWPRHpkoPDdPA8aiCWPRHpmoBi6814CxaMJYtEcmCs/N04CxaMJYtEcmCs/N04CxaMJYtAubeMIwAIhFE8SiPTFRjX6i3VNDTt/RALFogli0JyaqgQvrNEAsmiAW7YmJanAkA8SiCWLRnpgoPLNOA8SiCWLRLgQi7mMBxKIJYtGemCg8s04DxKIJYtGemCg8s04DxKIJYjGemCgB+YQBiMUQxGI8MVF4Zp0BiMUQxGI8MVF4Zp0BiMUQxGI8MVF4Zp0BiMUQxGI8MVF4Zp0BiMUQxGI8MVF4Zp0BiMUQxGI8MVECrsAwALEYgliMJyYKz6wzALEYgljMZRuvzgYgFkMQi/HEROGpeQYgFkMQiwknsOBj6QxALIYgFuOJiZKwp2sAYjEEsRhPTBQ+INEAxGIIYjGemCh8QKIBiMUQxGI8MVF4bp8BiMUQxGIazfyMALEYglhMOIQl9iuASCSIxXhiEv0VQCQSxGI8MYm+RBCJBLGYJkQibg8AYjEEsRhPTBSe32gAYjEEsZjjcfZwdyYDEIshiMWIEInw02YAYjEEsRgRIhHOezcAsRiCWIwIkQgnjRuAWAxBLMYTE4X3hzIAsRiCWIwnJgpPkDQAsRiCWIwnJgpPkDQAsRiCWIwnJgpPkDQAsRiCWIwnJgpPkDQAsRiCWIwnJgpPkDQAsRiCWIwnJgpPkDQAsRiCWIwnJgpPkDQAsRiCWIwnJgpvMWUAYjEEsRhPTBSe12YAYjEEsRjJtYkAsRiCWIwnJkrjTxtALIYgFiMt5wGIRIJYjCcmCs+sMwCxGIJYjCcmCs+sMwCxGIJYjCcmCs+sMwCxGIJYjCcmCs+sMwCxGIJYjCcmCk9LMwCxGIJYjJJMVxcgFkMQi/HEROF5bQYgFkMQi1Ga6eYBxGIIYjEqRCKujQCxGIJYjCcmCk/JMgCxGIJYjAqRiGsjQCyGIBbjiYnCU7IMQCyGIBbjiYkyuC4AxGIIYjGemCi8x5QBiMUQxGI8MVEGbo9kAGIxBLEYT0wUnpJlAGIxBLEYT0wUnpJlAGIxBLEYT0wUnpJlAGIxBLEYT0wU3ojDAMRiCGIxnpgoPCXLAMRiCGIxnpgovEWUAYjFEMRiPDFReEqWAYjFEMRiPDFReCaNAYjFEMRiTMMEEkAshiAW44mJwlNxDEAshiAW44mJwlNxDEAshiAW44mJwlNxDEAshiAW44mJwlNxDEAshiAW44mJwmeUGYBYDEEsJiAWPBXHAMRiCGIxAbHgqTgGIBZDEIsJiAVPxTEAsRiCWIwnJgrv7GMAYjEEsRhPTBSeSWMAYjEEsRhPTBSehmIAYjEEsRhPTBSeRWIAYjEEsRhPTBSeBGIAYjEEsRhPTBSeQWEAYjEEsRhPTBSeAGEAYjEEsRhPTBSeAGEAYjEEsRhPTBSeAGEAYjEEsZiAWPAECAMQiyGIxXhiovAECAMQiyGIxQTEgidAGIBYDEEsJiAWPAHCAMRiCGIxAbHg2QMGIBZDEIsJiAXPHjAAsRiCWExALHg7FAMQiyGIxQTEgmcPGIBYDEEsJiAWDP8NQCyGIBYTEAuG/wYgFkMQiwmIBe9mYgBiMQSxGE9MNN7NxADEYghiMZ6YaLwZiQGIxRDEYpxg+kiAsRjCWIxHJhqjdwMYiyGMxXhkojExNYCxGMJYjEcmGgNPAxiLIYzFeGSiMfA0gLEYwlhMYCyRPhJgLIYwFuORib6EnMkAxmIIYzGBsUSyd8BYDGEs9jJEIqxMFjAWSxiLvQyRCCuTBYzFEsZiPTLRGLlawFgsYSzWIxONkasFjMUSxmI9MtEYuVrAWCxhLNYjE423Q7GAsVjCWKxHJhojVwsYiyWMxXpkojFytYCxWMJY7CUzKcwCxmIJY7EemWi8HYoFjMUSxmI9MtF4NxMLGIsljMV6ZKLxbiYWMBZLGIv1yERj5moBY7GEsdgmRCIOZcBYLGEs1iMTjc+nsoCxWMJYrEcmGjNXCxiLJYzFemSi8W4mFjAWSxiL9chEY+ZqAWOxhLFYj0w0Zq4WMBZLGIv1yERj5moBY7GEsViPTDRmrhYwFksYi/XIRGPmagFjsYSxWI9MNN7NxALGYgljsYKZAWEBY7GEsdgjY4GozALGYgljsYGxYGBpAWOxhLFYESIRVybAWCxhLNYjE42prwWMxRLGYj0y0XhDFgsYiyWMxXpkovGGLBYwFksYi/XIROMNWSxgLJYwFuuRicbQ1gLGYgljsR6ZaAwsLWAsljAW65GJxsDSAsZiCWOxHplovCGLBYzFEsZiPTLReEMWCxiLJYzFemSi8YYsFjAWSxiL9chE4w1ZLGAsljAW65GJVnCprwWMxRLGYj0y0Zg3WsBYLGEs1iMTreQTrZ9etsQDwFgsYSzWIxOtFOLOFjAWSxiL9chE9zOukQEQiYSxWI9MtILTEy1gLJYwFuuRie5nXCMDIBIJY7EemWgF2bsFjMUSxmI9MtEKLvW1gLFYwlisRyZaX2IDIBIJY7EemWiNIxEwFksYi/XIRGuBPQCRSBiL9chEawkNAMZiCWOxHplojSMRMBZLGIv1yERrHImAsVjCWKxHJhqfr20BY7GEsViPTLSGc/8tYCyWMBbrkYnGrM0CxmIJY7EemWgNTzW2gLFYwlisZrizBYzFEsZiA2PBczQtYCyWMBYbGAueo2kBY7GEsdjAWPAUSwsYiyWMxXpkojFvtICxWMJYbGAskZcIGIsljMV6ZKIxsLSAsVjCWGw47R738gBisQSxWE9MNAaeFiAWSxCL9cRE40N1LEAsliAW64mJxsDTAsRiCWKxhpmeaAFisQSxWE9MNCamFiAWSxCL9cTEOjQvzgLCYglhsYGwRKoSICyWEBbrgYnGyNYCwmIJYbE2xCHu5AHCYglhsR6YaIxsLSAslhAWa0Mg4k8rICyWEBbrgYm2cMW4BYTFEsJiPTDRGNlaQFgsISzWAxNtcWUEhMUSwmI9MNGYuFpAWCwhLNYDk5gHgLBYQlisByYaI1sLCIslhMW2gvkZAWGxhLBYD0y0hSfaWEBYLCEs1gMTbeF6LAsIiyWExXpgEgskQFgsISy2DZGIKxMgLJYQFtuGSMSVCRAWSwiLbUMk4owJEBZLCIv1wERjaGwBYbGEsNhAWDA0toCwWEJYbCAsGBpbQFgsISzWAxONobEFhMUSwmIDYYkkfYCwWEJYbCAsmDpbQFgsISw2EBZMnS0gLJYQFhsISwu3IrGAsFhCWKwHJhpTZwsIiyWExQbC0sJpbRYQFksIi3UhEnEnDxAWSwhLGwiLg1uRtICwtISwtIGwOBgHLSAsLSEsbSAsDrbKLSAsLSEsbSAsmDq3gLC0hLC0gbBg6twCwtISwtIGwoKpcwsIS0sISxsIC6bOLSAsLSEsbSAsmDq3gLC0hLC0HphoTJ1bQFhaQljaQFgwdW4BYWkJYWk9MDGYOreAsLSEsLQemBhMnVtAWFpCWFoPTAyGxi0gLC0hLK0HJgZD4xYQlpYQltYDE4OhcQsIS0sIS+uBicHQuAWEpSWEpfXAxOAjMFpAWFpCWFoPTAxGti0gLC0hLK0HJgYj2xYQlpYQljYQFjwY2ALC0hLC0gbCggcDW0BYWkJYWhEiEdcFQFhaQlhawYwmtoCwtISwtIIZTWwBYWkJYWkFM5rYAsLSEsLSCmY0sQWEpSWEpRXMaGILCEtLCEsrmNHEFhCWlhCW1gMTg9F9CwhLSwhLG067x+dPtoCwtISwtB6YGMz+W0BYWkJY2kBY8HhmCwhLSwhLGwgLHs9sAWFpCWFpA2HB45ktICwtISxtICx4PLMFhKUlhKUNhAWPZ7aAsLSEsLSBsODxzBYQlpYQltYDE4NnYLSAsLSEsLQyRCL+sADC0hLC0npgYvAMjBYQlpYQllaFSMQfFkBYWkJYWg9MmvaJFE+lJI0yACwtASytCqvuL59o8dQ11AEQiASwtGGfMHyabAsAS0sASxuOu29s74FS1AAIRAJYWs9LGtM+0fKpmjwCCEQCWFrFDGu3ALC0BLC0KgQizHhaAFhaAlhaFQLR9h60hnoAApEAllaFQGyxARCIBLC0OgSigwYAYGkJYGk9LzHi8om+fGqlJgZAJBLA0npeYkSDDYBIJICl9bzECAF/RgBYWgJYWs9LDN4XqAWApSWApfW8xAh4vFQLAEtLAEvreYkR+MsGAEtLAEvreYkRcFC3BYClJYCl9bzE9PsCXU7GtVsAWFoCWFrPSwxeUtYCwNISwNJ6XmLwFJAWAJaWAJbW85JYkwYAS0sAS+t5iZFwQlYLAEtLAEvreYnpNxYCbSIALC0BLK0HJqafQ4I8AJFICEsbFrHg1dItICwtISytCcvu4dTAFhCWlhCW1gMTI+E02RYQlpYQljacdx/5LgDC0hLC0gbCEmnWAWFpCWFpPTExEp4i2gLE0hLE0npiYiSuzgCxtASxtDZEIq7OALG0BLG0NkQixJ0tQCwtQSytDajv8onUTyVtEwFiaQliaT0xaUSDDYBIJIil9cTESJzxAMTSEsTS2hCJOOMBiKUliKX1xKQxOOMBiKUliKX1xMTgrQdagFhaglhaT0yMwg0KQCwtQSytJyaNEE9k3x6QVhkglpYgltYTk1gnCyCWliCW1hOTWBcHIJaWIJbWE5NYFwcglpYgltYTk1gXByCWliCW1hOTRug+lJWm7wBEIkEsrScmjTC9Aa1IXQCIpSWIpW1bppMFEEtLEEvbOqaTBRBLSxBL60Ikwo3GWoBYWoJYWk9MjJLYAIhEglhaT0yMwq0yQCwtQSytJyYG72HRAsTSEsTSemISybkAYWkJYWk9MDEKt+qAsLSEsLTOMD1dQFhaQlhaZ5lWHRCWlhCW1gOTWKsOCEtLCEvrQpOIB8IAYWkJYXGXIRDhhjIOEBZHCIu7DIEIN5xzgLA4QlicByaRNtUBwuIIYXEemETaEwcIiyOExV2qeHviAGFxhLA4D0yMvnyi7FPbUAPTSHSEsLhLE2+QHCAsjhAWd2njDZIDhMURwuLCcfcWViYHCIsjhMV5YIJrswOAxRHA4sI2YTjdcACwOAJYXAAsuDY7AFgcASyuEfHa7ABgcQSwuEbGa7MDgMURwOIaxVQFAFgcASyu0UxVAIDFEcDiwjZhkaoAAIsjgMUFwBKpCgCwOAJYXMN8mx0ALI4AFtcw32YHAIsjgMV5XmLwpjwOABZHAIsT8cFEB/iKI3zFeVxitIBPAPiKI3zFCclEMuArjvAVJxQTyYCvOMJXnNBMJAO+4ghfcYLpJDrAVxzhK04wnUQH+IojfMUFvhKJZMBXHOErzuOSyK7EDvAVR/iK87ikgQP7DuAVR/CKk0wcArriCF1xkhnUdoCuOEJXXDiGBY89OEBXHKEr7khX4NiDA3TFEbriJDOo7QBdcYSuOA9LIvmWA3TFEbrijnQF5lsO0BVH6Io70hWYbzlAVxyhKy7QlUiLCuiKI3TFBboSaVEBXXGErjjFfZoBXnEErzgl4kPKDuAVR/CKUzI+IuwAXnEErzil4iPCDuAVR/CKUzo+IuwAXnEErzhPSwzeqc0BvOIIXnGelkSaA0BXHKErLtAVDYflHaArjtAVF+gK3unNAbriCF1x+pL5rgG64ghdcbphvmuArjhCV5zmkhVAVxyhK05zyQqgK47QFae5ZAXQFUfoitOa+SwBuuIIXXEelsQ+C4CuOEJXnGYCEcAVR+CK86yk6VtE/dQ25MMI4IojcMUFuKIhaHQArjgCV1yAK3i/PgfgiiNwxXlWYnT7RLdPDf0RAFxxBK64AFfwfn0OwBVH4IoLcAWvn3EArjgCV1yAK3j5iwNwxRG44jwrMXj5igNwxRG44jwrMXj5igNwxRG44gwzfuMAXHEErjjDjN84AFccgSvOsxJjcJsK4IojcMUFuILXvzgAVxyBK84yQ9oOwBVH4IoLcMWYJ7p56lpDDIBIJHDFBbhiLGxPAFxxBK64I1zBbSqAK47AFWdDJMJJfQ7AFUfgigtwBe9Z6ABccQSuuABX8J6FDsAVR+CK86zE4AUwDsAVR+CKs475rgC44ghccQGuRPIlAFccgSvuCFfwhwnAFUfgivOsxOBdEx2AK47AFRfgCl7D4wBccQSuuABX8BIcB+CKI3DFBbiCd010AK44AlecZyUGH2DqAFxxBK64NkQi/rQBuOIIXHGelUS+7oCtOMJWXOuYRhmwFUfYinOXTKMM2IojbMUFtmLbJ9o8pU8A0IojaMUFtGJx1grQiiNoxQW00sIjmRxAK46gFedRiWnhkUwOsBVH2Ipz3PgNYCuOsBXnuPEbwFYcYSvOceM3gK04wlbcka3g5gSwFUfYigtsBa9icoCtOMJWmkvPSnBVOF4cWxj+8WTCxyJeCXW8OrHRUBs+HvFapuPViQ1Bbch48ne8OrEhqY0QlbBxO16d2FDUho63DserExua2jDxBuJ4dWLDUBs22kYcL05MWGqijTcTx6sTGy214eItxfHqxAaN0rC0BTcWx6vURkPDtGF6kcerExs0TI/8BTYZx6sTGzRMjwgGthrHqxMbNEyPFAY2HMerExs0TMNKl9Y8UfqpEYbaQGHa0DANi13w+r3j1YkNGqZNPNU+XpyYoGEagEzboilsx6sTGzRMA5NpHeriH69ObNAwFczgz/EqtSFomApm/Od4dWKDhmmgM5GaD+jM8I8nE5Kr+QDQDP94sqG4mg8YzfCPJxuaq/kA0wz/eLJhuJoPSM3wjycblqv5ANYM/3iy0XI1H/Ca4R9PNhhic7w6sUHDNCyKidV8gG2GfzzZ8B99vNny8erEBg3TAG8iNR/Am+EfTyYkV/MBvxn+8WRDcTUfIJzhH0822G8+oDjDP55ssN98AHKGfzzZ4L75AOUM/3gywX7zAc0Z/vFkg/3mA6Az/OPRhmK/+YDpDP94ssF+8wHWGf7xZIP95gOyM/zjyQb7zQdwZ/jHkw32mw/4zvCPJxvsNx8gnuEfTzb8Nx/vkn68OrFBw5ThPMeLExM0TAPqwavej1cnNmiYBtrj4AzF49WJDRqmHPA5XqU2NA1Tjvkcr05s0DDV3DcfYJ/hH08m2G8+ID/DP55ssN98AH+GfzzZYL/5gP8M/3iywX7zAQIa/vFkg/3mAww0/OPJBvvNByRo+MeTDfabD2DQ8I9HG4b95gMeNPzjyUb45keSdICEhn882eC++QAKDf94MsFMHTpendigYWqY2UPHqxMbNEwDHIrUOACHhn88mTBcjQN8aPjHkw3L1TiAiIZ/PNlouRoHKNHwjycbjqtxABQN/3i0YS+5GgdY0fCPJxsNV+MALhr+8WRDcDUOEKPhH082JFfjADQa/vFkw7emeF+U49WJDRqmYVlOpMYBcjT848mE4XrZAB4N/3iyYbleNuBHwz+ebLRczQcIafjHkw3H1XxAkYZ/PNoIHClS8wFHGv7xZKLhaj5AScM/nmwIruYDmjT848mG5Go+AErDP55sMHOCj1cnNmiUtsy04OPViQ0api0zM/h4dWKDhulx4U6k5gO4NPzjyUbL1XwAmIZ/PNkIXVO4jczx6sQGDVPHje0DyjT848kEMy3ueHVig4apYyatH69ObNAwdcy89ePViQ0apo4NU4Cchn882WDDFFCn/4+ve8uVZNW1ANqhraPAD2z3v2NXBaS07mTi30SyamU5A4KBzd8PfzHaNCXw9PfDX4zmDPsZvWJgmlZzjP2MXjEwTas5yX5GrxiQpmPX9xStXD2jEGOgQY3vfY74DF4hBoaQ51HmM3iFEAyxDhN/k86TgwnUQIEaW6B4H7EzesUwjLFWpryV2Bm9YjjG+JdywbuJndErxsQYsWLwrYLBCGogQY3lScF7ip3RK0ZijFoxuFAORlADCWosTwreWeyMYgwkqLE8KXhzsTN6xcA0XZ4UvL/YGb1iYJ4uTwreYuyMXjEwT5cnBe8ydkavGJino1maDiZQAwVqLE56nN8/o1cMTNPlScqbyp7RKwam6akJ4hPlYAQ1kKDGaI6VnNErBqapNCdLzijGQIIa8j5ccgavEJilsrP08QRiBDWQoMYpEeLz9WAENZCghjTn7s7oFQOz9BQK8fl6MIIaSFBDZjNfD0ZQAwlqSDTz9WAENZCgxq4YeszXgxHUQIIaLUENRlADCWosT4rx8ZmSEdRAghrLk2IMPmMzghpIUGOBUvDGYmf0ioF5ukDp9RRjBDWQoEZLUIMR1ECCGi1BDUZQAwlqtAQ1GEENJKih0f1smUENNKih2f1smUENNKihzWnRM3rFwDS15sDoGcUYaFDDmjOjZ/SKgWlq0v1cmEENNKixQCl4C7wzesXAPLV3P4QzeIXANN093Ggt/hm8QmCWLk56rdQZQA0EqLEvyuF4NBhADQSosTQpadvmM3iFwBRdmCS0SuUMXiEwQ5cl/Tt7x/4VTJ8G6tPY+vTRtjtn9IqBCbqLjgbtgn1GrxiYoKfuiLbiPqNXDEzQXXpkHxW9wfhpID+NZUnBWz2e0SsGpujmJ6P3757RKwbm6OanV5IyfhrIT2PzE2/deUavGJily5KSH6scTJ8G6tNYlPTvVCULwfBpID6N3evNabe5M3rFwCxdlMTb1Z/BKwQm6b5R5/F7Y/Y00J7GgqR8pAajp4H0NBYkyePZw+hpID2N0/btFYNlKNLTWI4kjwRl8jRQnsZiJN6//wxeITA/Nzx9j+cGg6eB8DSWIsnjv5W500B3GguReEfIM3iFwPxchiSPnwlTp4HqNBYhySPFGToNRKexBEke+cnMaaA5jX3bzuu7YPmJ5jQWIPHmkmfwCoHpufzoNZ8wcRooTmPxkT6mNQZOA8FpLD3Sx++MedNAbxr73p1HXjBvGuhNY+ERv671DF4hMDuXHenjN8K0aaA2jUVH+sgLhk0DsWksOdLXd8GyE61pLDjSx2+EUdNAahrLjfTxG2HSNFCaxmIjfSQ4g6aB0DT2PTyvP4RlJzrTWGikj98IY6aBzDQWGtnjN8KYaSAzjdo3lD1CsOxEZRqLjOyR4AyZBiLT2Mj0+rUzZBqITGMj0+vnzpBpIDKNjUyvHytDpoHINDYyvX6tDJkGItNYYsSvxjmDVwjM0AVG/HKcM3iFwAxdXsSvxzmDVwjIUFlc9DgqKAyYBIFJFhcV/zqFAZMgMMniouIPP2HAJAhMsvvIDf5lCAMmQWCS3UrO+INHGDAJApMsLSr+EBbmS4K+JAuLij+7hPGSIC/JvrOHP4SF6ZKgLsm+tef1XZD8FMQl2V3l+B2ZZ/SKgQm6O8uNR3oxXBLEJdn1TeORXwyXBHFJdn3TePzHMlwSxCXZ9U3OHxvCcEkQl2TXNz0WCsJwSRCXZOPSY6UgTJcEdUnGvlbqEYIlKeKS7PIme8VgWYq4JGO/xfPHqDBcEsQlOfVNjxAsS9GWZEFRPX5vjJYEaUnOxT6PECxHkZZkOdF4zPTCaEmQlmRXNz0eo0yWBGVJtiw9VpHCZElQlmTLkj1+9kyWBGVJdnETb1l9Rq8YmKO7uOmxqyFMlgRlSXZx0+OdT5gsCcqSbFl6vOgIkyVBWZJd3PTIDgZLgrAkuyndKz0YLAnCkuzapue/g2UpwpJsWJqP/xYmS4KyJIuJBu/eckavGJimuq8YeIRgWYqwJEuJ6vH0Ya4k6EqykKgez1HGSoKsJJuV5iO/GCsJspJsVnq8+gljJUFWks1Kjy+UqZKgKslWpe/xJGWqJKhKslvWPVKDoZIgKskubJqPpyBDJUFUko1K8/GNMlUSVCXZqvQ9frKMlQRZSTYrfY+fLHMlQVeSXdj0vf5rWZYiLMliongtwpgsCcqSnD52jxAsSVGWZN8T9PifZbIkKEuyZYm3tjyjVwxM0i1L8/G7Z7IkKEuyZSkePxYmS4KyJFuW4pFhTJYEZUkWE+UjwRgsCcKSbFj6Hj9aBkuCsCQblvglVmf0ioFJehrcPX60DJYEYUl2XdP3yFImS4KyJMuJxvf4WxgtCdKSbFr6Hn8LoyVBWpJd12SP/xdmS4K2JLuw6bElKAyXBHFJdmHTY0NPmC4J6pIsKxr8mvczesXAPF1WFIMfUxTGS4K8JLv3HW+ieEavGJincz9Mg4KwMGASBCZZWhSDA7kwYBIEJol94ImfexAmTILCJMuLQjhuCyMmQWKSTUyPI8rCjEnQmCSaA0/CjEnQmGSJUfwTTPp1sDRFZJJFRiH06qwzesXANI3ZnH0QxkyCzCQLjULo/Vdn9IqBabrUyPjtTWf0ioFputgohF6XckavGJimy41M6V0bZxRjIDVJ7jSljYzP6BUD03TJkQu9R+mMXjEwTRcdPW5GO6NXDMzTZUfG73M6o1cMzNPceUr7Mp/RKwbm6dKjEH5iWxg4CYKT5M5TfmJbmDgJipMsPwp+Zd8ZvWJgni5ACuWVBcLMSdCcZAlSKK8sEIZOgugki5BC+dlPYeokqE5S0q3VGTsJspMsQwrlB/OEsZMgO0lzUdEZvEJgmm51es22TJ0E1Un2dUW8Z/AZvWJgmnY3Fp3RKwamaXdp0Rm9YmCa1k5TfgxMGDwJwpPu7nqPs7DK5ElRnnSXNj3OwiqjJ0V60nOBET8Lq8yeFO1JT3s9fhZWmT0p2pN+XQ8TZfakaE+6JCmUF9EowydFfNJd3KR8dapMnxT1SXdxk/JHsjJ+UuQn3fxk9G7vM3rFSIzxvtXoDF4hME13ez1+m8sZxRjIT3ra6/GfrTJ+UuQnPe31+M9WGT8p8pOe9nqPFGP8pMhP2l1ydEavGJimu70e7zl9Rq8YmKa7vR5vO31GrxiYpqNrYqLMnxT9SUfXxESZPyn6k46uakQZQCkClMqe9fkLsjKBUhQobW4+OoNXCEzTXdz0/GewNEWB0u7+ozN6xcA07a5AOqNXDEzT7hakM3rFwDTtLkI6o1cMTNPuLqQzesXANJWmne4ZvWJgmsqe9fkCVxlBKRKUalN3r4ygFAlKlyc97ro7o1cMTNPubqQzesXAND3XIxndclBGUIoEpcuTXiWayghKkaC0uyTpjF4xME2XKD1uajqjVwxM00VKYfzdRZlCKSqUntuS+JalMoVSVCjdDfb4nU9n9IqBaboVil/7dEYxBjKU7muT+M1PZ/SKgXl6bk7idY3KHErRofRcnsTrGpU5lKJD6bk/iZfwKnMoRYfShUph/L1UmUMpOpTuBnv8JqkzesXAPLVdK8q3o5U5lKJD6e6w99jHUeZQig6l26Eeex/KIEoRonRDFL+W6oxiDJQo9d3H5DFlM4lSlChdrBTG9wuUSZSiRKk3W6fKIEoRonSpUhjfLlAGUYoQpd0FS2f0ioFpulgpjL8fK5MoRYlS34/Tx7sckyhFidLFSmGPdzkmUYoSpYuVwh7vckyiFCVKFyuF8e01ZRKlKFG6WCnssfpgEqUoUbpYKfwxRTGJUpQoXawU/H7RM3rFwDxdrBT++LkwiVKUKF2sFPxCuTN6xcA83RLljzxlEqUoUbpYKfi1cGf0ioF5uiXKH3nKJEpRonRLFL/U64xeMTBPt0T5I0+ZRClKlG6J4ld7ndErBubpYqXgt3ud0SsG5ulypeAXfJ3RKwbm6aYofsfXGb1iYJ5uiuLXfJ3RKwbm6XKlmI88ZRSlSFG6XMk+zkjKKEqRonS5UvDrus7oFQPzNLo9KSZRihKli5Weby9MohQlSrdEzclXDkyiFCVKFys9316YRClKlC5Wer55MIlSlCjdTfZeb0BMohQlSvfVTa+3BiZRihKl+/am11sDkyhFidJ9gdPrrYFJlKJEaXbdy5RJlKJEaXbdy5RJlKJEaX3dap1JlKJE6emy91jhMolSlCjdEjUfUwOTKEWJ0upWpwyiFCFK97VODwFSJlGKEqW1n6aPGYpJlKJE6Wmy99hfYxKlKFF6JOqxv8YkSlGitPbTlJ/7UCZRihKlW6KCI7QyiVKUKFus9HqMGZMoQ4myr+umb0yiDCXKtkQ9HmPGJMpQomyxUjyO4hmTKEOJssVKNoRubBmTKEOJsq9rBmlMogwlyr6uGaQxiTKUKPu6ZpDGJMpQouzr9k6NSZShRNm+6enxKDRGUYYUZaN72TdGUYYUZbvN3uP8mjGKMqQo2232+D2LZ/SKgXk6msepMYkylCgb3ePUmEQZSpRtiXrsaxmTKEOJstE9To1JlKFE2egep8YkylCi7EjU4xHEJMpQouxI1ONnyyTKUKLstNl7/GyZRBlKlO1aqNfPllGUIUWZdHunxijKkKJMur1TYxRlSFEmHewboyhDijLxpsmVMYoypCiT2fSEM0ZRhhRly5WC35B6Rq8YmKeboh4/fSZRhhJlUt1Pn0mUoUSZdpeTGKMoQ4oy7S4nMUZRhhRlm6JeP1tGUYYUZbsa6vWzZRRlSFG2q6FeP1tGUYYUZcuVnj9bRlGGFGWnz97j58IoypCibLmSP7qWGqMoQ4oy7dKUSZShRJnuxSk/AWdMogwlyhYrRfCtMWMSZShRZnvS5+8/xiTKUKJst9kLrgTGJMpQosy6rqXGJMpQomyxUvBDuMYgyhCizLodfmMQZQhRtlQpgu/yGYMoQ4iyDVGPo0XGIMoQosy6ax+MQZQhRJl11z4YgyhDiDLvTvMZgyhDiLINUY9jQcYgyhCizLsbyYxBlCFEmXc3khmTKEOJMm8nfSZRhhJlu9le8tIsYxJlKFG2a6IeTzEGUYYQZd7dTmIMogwhypYqvdpIG4MoQ4gy71pAG4MoQ4iy2bWANgZRhhBls33VZxBlCFE22zRlEGUIUTbbNGUQZQhRNq2bsBlEGUKUzfZxyiDKEKJsX/akg285MIgyhCibzcV5xhzK0KFsO1RyMzHmUIYOZduhHpWMxhzK0KFsO9Tj2nBjDmXoULYd6nFtuDGHMnQoi+56EmMOZehQFt31JMYcytCh7DgU3yk05lCGDmXboR7XlxtzKEOHsu1Qj91GYw5l6FC2L3uyR6ozhzJ0KIv2VZ85lKFD2Xao124jgyhDiLLs7iQzBlGGEGXZ3UlmDKIMIcqyu5PMGEQZQpTtkqiPt4M1BlGGEGVp3Q4dgyhDiLJdEvXoxGoMogwhyrKb9ZlDGTqULVR6boozhzJ0KMt21mcOZehQlu2szxzK0KGs2lmfOZShQ1m1sz5zKEOHsmpnfeZQhg5l1c76DKIMIcqqnfUZRBlClJV3u2sMogwhynZJ1Gt3jUGUIURZdZeSGYMoQ4iyDVGvnTEGUYYQZRuiHq2LjUGUIUT51xyOduZQjg7lC5Vei3VnDuXoUP51s74zh3J0KP+6Wd+ZQzk6lH9dqYkzh3J0KG8dyplDOTqUtw7lzKEcHcpbh3LmUI4O5a1DOXMoR4fyhUqvUzDOHMrRoXxf95TcoJ05lKND+WhKTZwxlCND+ejO8DtjKEeG8oVKU/mCzplDOTqU79uekm8FOXMoR4fy7VCP9x9nDuXoUL4ropTX/DtzKEeH8oVKr7pwZw7l6FC+HcqcWoUzh3J0KN8d+ZT3DXDmUI4O5dKxvjOHcnQoX6j0Op3kzKEcHcq3QynvPeDMoRwdyrdDKT9v7syhHB3KFypN5efNnTmUo0O57Dx9PD6YQzk6lEvnpc4cytGhXDovdeZQjg7l+74n5f0tnEGUI0T5hijlK1xnEOUIUb4h6tGl0BlEOUKUL1Waj14MziDKEaJcpXkxdQZRjhDl2u3wO4MoR4hy7U7zOYMoR4hy7U7zOYMoR4hy7U7zOYMoR4hy7U7zOYOoPx/+YnQXPjmTKEeJ8vbCJ2cS5ShRvmuiHit+ZxLlKFG+a6IeK35nEuUoUX5a8/HjSc4kylGifF/4VI/fHJMoR4ly67b4nVGUI0X5cqVp+vhbWJ4iRflypdfGhTOKcqQo3xRljzmKUZQjRfnuzVd889QZRTlSlFtzONqZRDlKlC9WiuJn1p1JlKNE+WKleLQ0dyZRjhLlLs3RImcS5ShR7l0ltDOJcpQo964S2plEOUqUe1cJ7UyiHCXKvauEdkZRjhTl3lVCO6MoR4ry5UrPNzFGUY4U5V7do5BRlCNF+fy6RyGjKEeK8l0T9XqMMYpypCif3d6pM4pypCjfNVGP/v3OKMqRonzXRD2OODmjKEeK8l0T9djIcUZRjhTluyaquBM4oyhHivKOopxRlCNF+aaoxyUAzijKkaJ8U9Tj9nBnFOVIUb4pqpJ/pYyiHCnKo+t/4oyiHCnKo+t/4oyiHCnKo12dMopypCgP6x5jjKIcKcrDu8cYoyhHivLojkk5oyhHivJNUTn/M//flIkxWJ4iRfkuiXrcp+6MohwpyruSKGcS5ShRnl2bHmcS5ShRnm2aMolylCjPNk2ZRDlKlGebpkyiHCXKt0Q9ztI4kyhHifJdEvVoseNMohwlyrOd9RlFOVKUZzvrM4pypCjPdu+UUZQjRflypfx4VaYzinKkKK9ui59JlKNE+WKlfPTzdiZRjhLlW6Jee3RMohwlyhcr5fdYaDOJcpQo3735Xj85JlGOEuW7Od/rJ8ckylGifLFSfvqf1w23ziTKUaL8SNTjZ8skylGivNp3fSZRjhLl1b7rM4lylKh5mvPxn8tkFDWRoua385QfQJmMoiZS1NwUxX8uk0nURIma305Tvp6bTKImStRcrJQfP4Q7mURNlKi5WCk/fgh3MomaKFHz22nK5WUyiZooUXOxUn58wp5MoiZK1Fys9Pq5TCZREyVq7t58j5/LZBI1UaLmYqV8XK08mURNlKi5XCkH37aYjKImUtRcrpSDPwono6iJFDWXK+XjDvLJKGoiRc3RtDqdTKImStTcEvW4OHEyiZooUXOxUj5uiZ5MoiZK1FyslOPxs2USNVGi5ugOR08mURMlao7ucPRkEjVRoqZ0h6Mnk6iJEjVldKnOJGqiRE3pzp9MJlETJWpKd/5kMomaKFGzrYiaTKImStRcrJSPJvqTSdREiZrSHJOaDKImQtRcqjQfF8VMBlETIWpKN+lPBlETIWpKN+lPBlETIWru66EeO2OTQdREiJq60/QxyzGImghRU/fT9DHLMYiaCFFT99P0McsxiJoIUXOpUgpf708GURMhauq+1uQxuzCImghRc0NUPB7JDKImQtTcFVH/Fvxkp3AyiJoIUbOriJrMoSY61Ny9+R6v6ZM51ESHmtYV7k3mUBMdalpXuDeZQ010qGld4d5kDjXRoebuzfd4TZ/MoSY61Ny9+R6v6ZM51ESHmtYdk5rMoSY61LTumNRkDjXRoaZ1p/kmc6iJDjVtN47mHjaZQ010qNk51GQONdGhpnc7UpM51ESHmt7tSE3mUBMdanq3IzWZQ010qOndjtRkDjXRoaZ3O1KTOdREh5re7UhN5lATHWq2DjWZQ010qNk61GQONdGhpnc7UpM51ESHmguV3IKnOnOoiQ41Z7MjNRlDTWSoOUeX6oyhJjLUnN2h08kYaiJDzdkdOp2MoSYy1JzdodPJGGoiQ83Z9TefjKEmMtScXX/zyRhqIkPN2fU3n8yhJjrUnF1/88kcaqJDzdn1N5/MoSY61Fyo5MZPa03mUBMdakZz6HQyhprIUHOZ0jPVGUNNZKgZnepPxlATGWpGp/qTMdREhprRqf5kDDWRoWbMLtUZQ01kqLkZ6pXqjKEmMtSM9h2KMdREhprRvkMxh5roUDPbjVPmUBMdai5UcuOHCidzqIkONbPbOGUMNZGhZmqX6oyhJjLUzG5/fzKGmshQM7v9/ckYaiJDzcNQj1RnDDWRoebuzPdKdcZQExlq7s58r1RnDDWRoWZ2PXomY6iJDDWr69EzmUNNdKh5KqIeqc4caqJDzYVK7vwAy2QONdGhZteZbzKGmshQ8xREPVKdMdREhpqHoR6pzhhqIkPN05nvkeqMoSYy1GwZajKGmshQs7JLdcZQExlqLlN6pjpjqIkMFV9XXxqMoQIZKr6uvjQYQwUyVHzdGalgDhXoULEdSnhdeDCHCnSo+Jr9/WAMFchQsRnq+c8gaRrIUPF1J/iDMVQgQ8XXneAPxlCBDBVfVwYdjKECGSq+7mkajKECGSpG9zQNxlCBDBWje5oGY6hAhorNUMIJKRhDBTJUdI35gilUoELFVqhHYVYwhgpkqDgFUbygIRhDBTJUjK6pRDCGCmSoWKb0KqoKxlCBDBXLlF5FVcEYKpChYjPU48BGMIYKZKhYpvQqqgrGUIEMFcuUXkVVwRgqkKFCpCmqCsZQgQwVpyCKH1gPxlCBDBWnIIoXVQVjqECGilMQxYuqgjFUIEOFzKaoKphDBTpUnIKoxyOZOVSgQ8VxqMcjmTlUoEPFKYjir+nBHCrQoWI71KOoKphDBTpU7M58j6KqYA4V6FBxCqIezyDmUIEOFQuVXkVVwRwq0KFCuy2pYA4V6FDRXhIVzKECHSpOQRQvqgrmUIEOFacgihdVBXOoQIeKc0kUL6oKBlGBEBXaTvsMogIhKqyd9hlEBUJUnIIoXkkQDKICISrOJVG8kiAYRAVCVGyIehRVBYOoQIiK3ZrvUY0QDKICISra3nzBICoQomJfEvUoqgoGUYEQFRZNUVUwiAqEqNiXRD2KqoJBVCBExWKlFH6UJphEBUpUeLPDHwyiAiEqliql8NM4wSAqEKLC9+qUn9gIBlGBEBW+X6L48YJgEBUIUeGb9fnxgmAQFQhR4fstih8vCAZRgRAVS5Xycdd3MIgKhKhYqpSPu76DQVQgRMW+JOr1s2UQFQhRsVQpH/eFB4OoQIiKxUr5uOs7mEQFSlQsVsrHxdTBJCpQomKxUj4uUQ4mUYESFYuV8nGJcjCJCpSoWKwk9f1n+T/9CmOwPEWJisVK+biIOZhEBUpUzJ2nj98Lk6hAiYp9SdSjoDKYRAVKVMzm+EkwiAqEqJg7TR8/WwZRgRAVS5Xycc1lMIgKhKhYrJSPqxCDSVSgREV09aXBJCpQoqKVqGASFShR0UpUMIkKlKhoJSqYRAVKVETn+sEkKlCiIjrXDyZRgRIV0dWXBpOoQImK6OpLg0lUoERFdvWlwSQqUKIiu/rSYBIVKFHR9uYLRlGBFBXZ1ZcGo6hAiors6kuDUVQgRUV29aXBKCqQomJfEvUougtGUYEUFcuV8nHdZjCKCqSoyO5xyiQqUKIiq2lQHEyiAiUq6mvaHQaTqECJihpN77VgEhUoUbHviHq0bQ0mUYESFVui/tVC0hgsTZGioq2ICkZRgRQVbUVUMIoKpKjYFVGPq1SDUVQgRUVLUcEoKpCioq2ICkZRgRQVbUVUMIoKpKj8usPRySgqkaLy6/b4k1FUIkXlcqV8XC2bjKISKSo3RT2ulk1GUYkUlbsk6nG1bDKLSrSo3M35+CMoGUUlUlQuV3LT/9z/9+UVg6RpIkXlciX5ks4MySgqkaLy60pNklFUIkXl15WaJKOoRIrK0ZWaJKOoRIrKQ1H8J5eMohIpKndzvsdPLhlFJVJUbop6/VyYRSVaVI6dpvwFKJlFJVpULljKx+3FySwq0aJyNKUmySgqkaJyV0Q9LkBORlGJFJXLlfJxAXIyikqkqFyuJB+f9ZNRVCJF5XKlfFyinIyiEikqd0XU4xLlZBSVSFEp3anTZBSVSFEp3anTZBSVSFEp3RZ/MopKpKjcFVGPC6GTUVQiRaV0L1HJKCqRolK6l6hkFJVIUSnd4ehkFJVIUblcKR+XWyejqESKSt15+pgpGUUlUlRqc+o0mUQlSlRqd+o0mUQlSlRq966fTKISJSq1e9dPJlGJEpW7Iupx13cyiUqUqNTuOF8yiUqUqNTuOF8yiUqUqGxb8yWTqESJyrY1XzKJSpSotJ2mj1mOSVSiRKXtU6dG3/WTSVSiRKV17/rJJCpRonKx0qtSLZlEJUpULlZ6lQAlk6hEicrFSq/aimQSlShRabM5tJ5MohIlKi2a08DJJCpRonKXRD2OWSaTqESJyi1Rzm/eSiZRiRKVy5Xchf87GEUlUlT6bsmrjxgsT5Gi0vcJlEeuM4pKpKhcruT+yFNGUYkUlcuV3B95yigqkaJyuZJ70D2pZBSVSFG5Ker1f8soKpGi0pueZ8kkKlGi8rTme0xzTKISJSrbW6KSSVSiRGV7S1QyiUqUqGxviUomUYkSlYuVnlMUk6hEicqpzTHcZBKVKFE5u55nySQqUaJydj3PkklUokTl7HqeJZOoRInKxUrpj7coJlGJEpWdRCWTqESJyi1R8/EixiQqUaIyukLoZBKVKFEZXSF0MolKlKiMrhA6mUQlSlRGVwidTKISJSqjK4ROJlGJEpXRFUInk6hEicroCqGTSVSiRGVEtxpjEpUoURntSxSTqESJyqhuNcYkKlGiMr9uNcYkKlGi8tREPVZjTKISJSoXKz1XY0yiEiUqU7vVGJOoRInKtG41xiQqUaIyvZuxmUQlSlQuVnquxphEJUpULlZ6rsaYRCVKVGZ2qzFGUYkUlcuVnqsxRlGJFJX1dasxRlGJFJU1utUYo6hEisrlSjkfm2OMohIpKruiqGQSlShRWdZ0j00mUYkSlYuVXt1jk0lUokRlddUmySQqUaKyumqTZBKVKFFZXbVJMolKlKis7thpMolKlKj6umOnxSSqUKKqlahiElUoUbVY6QXZxSSqUKJqsZI/9LeYRBVKVHVFUcUgqhCiahdFTX76tZhEFUpU7d58k1dXFJOoQomq3Ztv8idhMYkqlKhqJaqYRBVKVLUSVUyiCiWqWokqJlGFElWtRBWTqEKJqlaiiklUoURVK1HFJKpQompL1ORbycUkqlCiajRgWgyiCiGqNkQ9irOKSVShRNVipVcRUDGJKpSo2hI1H798JlGFElVjv0Txbc9iElUoUbUlavKFVDGJKpSoam+JKiZRhRJVW6IeBRrFJKpQomoXRT0KNIpJVKFE1S6KehRoFJOoQomqXRT1KNAoJlGFElW7KOpxBK6YRBVKVO3mfI8jcMUkqlCiSnae8v2CYhJVKFElTTepYhBVCFG1a6KM15kVg6hCiKrdmy843BaTqEKJqt2bL/jatJhEFUpU7d58weG2mEQVSlTt3nzBsbOYRBVKVO1Loh4naItJVKFElXaL02ISVShRpd3itJhEFUpU7Zqox/txMYkqlKjazfns8ShkElUoUbUviTJ+U3cxiSqUqLJu67SYRBVKVFnX6rSYRBVKVFnX6rSYRBVKVO3mfI9jY8UkqlCial8S9XoUMokqlKjaNVGvRyGTqEKJqrY5XzGJKpSoWqyUwVG+mEQVSlRtiYrHSopJVKFEVVcTVQyiCiGqdk1UPB7JDKIKIar2JVHFS9WKQVQhRNWuiQp++rUYRBVCVO2aqMhHDJamCFHlXQOUYhBVCFHlXQOUYhBVCFHl3anTYhJVKFHlHewXk6hCiSrvYL+YRBVKVM3u1GkxiSqUqNrd+V5TA5OoQomq9pKoYhJVKFG1WMkG308qJlGFElWze9dnEFUIUbWb871WUgyiCiGqdklUPBaFDKIKIapmdKsPBlGFEFWzfddnElUoUTXbd30mUYUSVfF1KcYkqlCiKka3+mASVShRtWuiXqsPJlGFElXtJVHFJKpQoqq9JKqYRBVKVLWXRBWTqEKJqt2d7/X4YBJVKFG1u/O9Vh9MogolqnZN1Gv1wSSqUKIquiaSxSSqUKJqsdKrBqiYRBVKVC1WyuRyW0yiCiWquu58xSCqEKJqXxL12sdhEFUIUbVU6bmPwyCqEKJqQ9RrH4dBVCFE1VKlzMdLJYOoQoiqXRL12sdhEFUIUXUg6rGPwyCqEKIquwYoxSCqEKJqd+d77QUxiCqEqFqq9NwLYhBVCFG1VOm5F8QgqhCiqrTbC2ISVShRtdvzvR5BTKIKJarKu0cQk6hCiaqaTZOMYhJVKFG1WCnzsfnBJKpQomqxUuZj84NJVKFE1WKlzMeLGJOoAomS73u/RJ3B/x/i74e/EM1L1Bm9YgyM0bxEndErhmCM5iXqjF4xFGM0L1Fn9IphGKN5iTqjVwzHGM1L1Bm9YkyMsdOUvmOf0StGYIwGTM/oFSMxRgOmZ/SKgWnatec7oxhjYJ6O8V5JndErBubpkPcq+YxeMTBPO4k6o1cMzNPFSh6079kZvWJgnjYSdQavEJim+5Yobr9n9IqBabpropK+U57RKwam6WjTlEjU3w9/MZrF6Rm9YmCabolKWmZ2RjGGYJrKu9bkDF4hMEuXKj2/UgJRfz/8xWhqTc7oFQOzVJpakzN6xcAslaavxBm9YmCadiVRZ/SKgWnalUSd0SsGpmlXEnVGrxiYprskKum+xRm9YmCaajfpE4j6++EvxJr0i0LUGb1iYJouVYo5/5vfdQXhGb1iYJrq+5DUGbxCYJZuhyp6GesZvWJgli5UeryGndErBmbpdij+ynBGrxiYpbsi6jXHEYf6++EvxlqaFm2jcEavGJilC5WSNws6o1cMzNKFSs/vlDjU3w9/MbqHKWGovx/+QjT1pWf0ioFZak196Rm9YmCaWlNfekavGJim3R1RZ/SKgWna3RF1Rq8YmKbWpilhqL8f/mLk+43yjF4xME2t3m+UZ/SKgWnq3/vQ2BnFGI5p6l2aEob6++EvxJrzeX+dM3rFwDTdDFWPVSVhqL8f/mLsp+njbZAw1N8PfzHWhhQ/tnpGrxiYpsuUPOZ/U/5X10+OMNTfD38xdlcJupl0Rq8YmKa+n6Z0M+mMXjEwTbuCqDN6xcA07QqizijGmJimXUHUGb1iYJ7ORvXP6BUD83Q2qn9GrxiYp6cg6rEWIw7198NfjJ2nj7UYcai/H/5ivLtKnMErBKbpbBpHn9ErBqbpbBpHn9ErBqbpYahXerA0nZim0VwXcUYxRmCaRnNdxBm9YmCaRqOlZ/SKgWm6TKk+ygxn9IqBaRpvLT2DVwjM0q1QnBnO6BUDs3SRUn10e/+MXjEwTRcp1fdYVxKF+vvhL0auGHTb9IxeMTBNFykVv9T+jF4xME0XKRW/kf6MYozENF2kVPxG+jN6xcA0zXZxShjq74e/GO3ilDDU3w9/MdrFKWGovx/+YrSLU8JQfz/8xWgXp4Sh/n74i7HqoeJjBS9n9IqBedp05juDVwhM092Z798WH/u5EIX6++GJUTtNg2+rE4X6++EvxurM99oSJwr198NfjKa89IxeMTBNq902JQr198NfDFvfx2N/jijU3w9/MbptU4JQfz/8hdimn/95/m/efwrL0sIsrXbSJwj198NfjHbSJwj198NfjJWmk57XOKNXDEjTsUgpgt7ScEYhxkCFGl9zq8kZvWIMjNGl6WAKNVChxiKl1y7OYAo1UKHGIqUIviM1mEINVKixSMkGhc4zesVwjNHtmw6mUAMVanzdvulgCjVQocbX9OM9o1eMxBjd9v5gCjVQocbY/XiVvlMOplADFWpshZKgm56DKdRAhRqLlCL4SmowhRqoUGPsxSl/dxlMoQYq1BjN4nQwhBqIUGORkn98u2AwhRqoUGORUg2+Fz2YQg1UqLEviXo8kgdTqIEKNUZzlO+MXjEwTUdzlO+MXjEwTeXrUp0p1ECFGtK96g/GUAMZakj3qj8YQw1kqCHdq/5gDDWQoYY0B/jP6BUD81SaA/xn9IqBeSrNAf4zesXAPJXmAP8ZvWJgni5TehyhO6NXDMzTZUqPNtpn9IqBebpQqQZ/qRzMoQY61Gg6853BKwSm6enM9/jpM4YayFCj68x3Rq8YmKZdZ74zesXANNVOSwdzqIEONbSd9ZlDDXSooe2szxxqoEMNbWd95lADHWpoO+szhxroUMN2mtLjXmcUY6BDjc6hBnOogQ41TBqmHMyhBjrU2FdEvVKdOdRAhxrWnDg9o1cMTFNr05Q51ECHGtZx6WAONdChxr4i6rVIZg410KGGNXUmZ/SKgWm6HeqV6syhBjrU8HbWZw410KHGrod60O9gEDUQosauh3otcBlEDYSocSCK8/FgEDUQosZSpRp8q3AwiBoIUcObd/3BHGqgQ43tUK8FLnOogQ41Fio9F7jMoQY61DiN+R4/feZQAx1qeL3rXc7oFQPTdDYdz84oxkCHGrPpeHZGrxiYprN912cONdChxnGox0+fOdRAhxrHoR4zJXOogQ41dj3U6/HBHGqgQ43ZFOuf0SsG5ulsivXP6BUD83R2Z6QGg6iBEDVmdQtcBlEDIWrseijeGueMYgyEqLFUqQaXhsEgaiBEjXjXmZzBKwSmabSzPnOogQ41ornT5IxeMTBNo7nT5IxeMTBNo2kbfUavGJim54qox8+WQdRAiBqnMd/jZ8sgaiBEjWhnfQZRAyFqZDvrM4gaCFFjQ9TgmDUYRA2EqNGUQ53BKwSmabbvUMyhBjrUyPYdijnUQIca2S5OmUMNdKiR7TsUc6iBDjWyfYdiDjXQocYph3q8NDCIGghRI9+tT87gFQKztL53V+AzijHQoUaNLj2YQw10qHEc6pEezKEGOtSoprj0jF4xME13NRRvlXpGrxiYprsairdKPaNXDEzT2junnKAHg6iBEDWqfZoyiBoIUaPapymDqIEQNap91WcQNRCi5Nuv+rQb1RmFGIIQJV/zqi/MoQQdShYq1eBMKcyhBB1KFirV4Pv7whxK0KHk61RfmEMJOpQsVCrhh2CEOZSgQ8lCpRK+USjMoQQdShYqlfBdHGEOJehQslCphL9SCnMoQYeShUrFb4M+o1cMTNOFSsWvcj6jGAMdShYqFb/K+YxeMTBPFyoVv8r5jF4xME+3Q/GrnM/oFQPzdKlS8aucz+gVA/N0qVLxq5zP6BUD83RDFL/K+YxeMTBPlyoVv4b5jF4xME+XKhW/hvmMXjEwT5cqFb+G+YxeMTBPlyoVv4b5jGIMhChZqlT8GuYzesXAPF2qVPwK5TN6xcA8XapU/ArlM3rFwDxdqlT87uIzesXAPF2qVPzu4jN6xcA8laanxBm9YmCeLlUqfv/xGb1iYJ4uVZpZdAkjDKIEIUqaxnxn8AqBaardlpQwhxJ0KNFuS0oYRAlClGi3JSUMogQhSrTbkhIGUYIQJdptSQmDKEGIEu22pIRBlCBEyVKl4lfkntErBqapvq80OYNXCMzShUrFr1E9o1cMzNKFSo9G3Gf0ioFpam2aMocSdCixNk0ZRAlClFibpgyiBCFKrE1TBlGCECXWpimDKEGIkgNR/KVBGEQJQpTYTtPHTMkgShCixLo0ZQ4l6FCy2/LxBthn9IqBabrb8j1qmYQ5lKBDyamHog2wzyjGQIcS7971hTmUoEOJd+/6whxK0KHEu3d9YQ4l6FDiTSOpM3rFwDT1ppHUGb1iYJp6c/POGb1iYJpuiOK3Dp/RKwbmqTdHo4U5lKBDya6HelQ0CHMoQYeShUqv4mNhDiXoUDK7M6fCHErQoWTKu2HRGb1iYJruC6KU3mhyRq8YmKbboR6cLsyhBB1KtkPxhkVn9IqBabodijcsOqNXDEzT7VC8YdEZvWJgms6uvFSYQwk6lMyuvFSYQwk6lER35lSYQwk6lGyH4hd9n9ErBuZpdKwvDKIEIUp2QRS/yfmMXjEwT7uCKGEOJehQslDpceH4Gb1iYJqegih+UkKYQwk6lES8Ly0/o1cMTNNdEMUvtj6jVwxM0+jKS4U5lKBDSXblpcIcStChJLszp8IcStChJLszp8IgShCiJLszp8IgShCiJLvyUmEQJQhRkvtV/7FdwCBKEKIkm/JSYQ4l6FCy2/J93JCEOZSgQ8muh/p3BxlLdeZQgg4l26H43U5n9IqBaVrtOxSDKEGIkmrfoRhECUKU7PuhPv3PizxNGUQJQpS0ECUMogQhSqpdnDKIEoQoqXZxyiBKEKJkQxS/1P6MXjEwT6t7h2IOJehQUt0JfmEOJehQUt0JfmEOJehQulBpRv7n83/4pyhjKEWG0oVK5fyAtjKHUnQo3Q7173Y5GoNkqaJD6UKlGXx9q8yhFB1KFyrVvxvq6L+DZKmiQ+nXqb4yh1J0KG3roZQ5lKJDaVsPpcyhFB1Kv+6MlDKHUnQo3Q7lfNdCmUMpOpSOpo+UMoZSZCjd5VDJ10DKGEqRoXQ35XtsIytjKEWG0tEdPlHGUIoMpaM7fKKMoRQZSpcpvX75TKEUFUq3Qr1++UyhFBVKt0K9fvlMoRQVShcpPX/5TKEUFUq3Qr1++UyhFBVKpbnF7IxiDFQoleYWszN6xcA0leYWszN6xcA0la4IWplCKSqU7nKox8lGZQqlqFC6Fcr5RpAyhVJUKJVmaaoMoRQRSjdCOX+xVYZQigiluxqK3295Rq8YmKay05TX2StTKEWF0kVKr2ZDyhRKUaFUu31TZQqlqFCq3b6pMoVSVChVbZ5iDKEUEUrVuqcYQyhFhFL17inGEEoRoXSJ0vMpxhBKEaFUo3uKMYVSVCjVrsWpMoVSVCjVrhOvMoVSVCi1rhOvMoVSVCg9CvV4ijGFUlQoNemeYkyhFBVKFymV880TZQqlqFBqzX6UMoRSRChdovR8AjGEUkQo3Qj1egIxhFJEKLWu3ZkyhVJUKLXuDUqZQikqlFr3BqVMoRQVSr17g2IIpYhQ6u0bFEMoRYRSb9+gGEIpIpR6+wbFEEoRodTbNyiGUIoIpd6+QTGEUkQo9fYNiiGUIkKpt29QDKEUEUq9fYNiCqWoULqroV5PIKZQigqli5TK+RafMoVSVCidzYFTZQiliFA6pXsLYwiliFC6Eer1FsYQShGhdHZVJsoQShGhdHZVJsoQShGhdCPU4+nBDErRoHRG9/RgBqVoULpA6fn0YAalaFC6Der19GAGpWhQGl/39GAGpWhQGt3mvjKDUjQojW5zX5lBKRqURre5r8ygFA1Ko9vcV4ZQigilS5SeTw+GUIoIpRuhJt81VYZQigil0eyaKjMoRYPSBUrPdQMzKEWD0taglBmUokFpa1DKDErRoHSB0uuXzwhKkaA0pfvlM4JSJChN7X75jKAUCUqXJz1/+YygFAlKN0G9fvmMoBQJSrMr2VNmUIoGpdkVmSgzKEWD0uyKTJQZlKJBaXZFJsoMStGgtLrKUmUGpWhQukCpJj99q8ygFA1KqynZU0ZQigSlLUEpIyhFgtJqH6aMoBQJSpcn1eQnRZURlCJBaXXbUUygFAVKTynU6+tgWYoEpdWuTBlBKRKUVrsyZQSlSFC2S6EmP/VqzKAMDcq6UihjBGVIULY8ySc/2mSMoAwJyr4uS40RlCFB2ddlqTGCMiQo+7op3xhBGRKU7VKoydnGGEEZEpR9zZRvTKAMBcoWJ716pBoTKEOBsq9rF21MoAwFykZX/myMoAwJyg5BPf5bGEEZEpTtSqjJ98ONEZQhQdlorjIxJlCGAmWjK9gzJlCGAmWjOxJtjKAMCco2QU2+L2+MoAwJykaXpUygDAXKdh3U5OfNjAmUoUDZFih+KeUZvWJglrYCZUygDAXKpNszNSZQhgJl0u2ZGhMoQ4GyXQc1+Y6FMYEyFCiTZs/UGEAZApRJd8meMYAyBCiT7pI9YwJlKFAm3ZRvTKAMBcqk6yBlTKAMBcp2GdRjcWtMoAwFyrR9mDKBMhQoW5xUwV9JjQmUoUCZNgtTYwBlCFC2OKmCr4+NCZShQNkWqOCLSmMCZShQpm2aMoEyFCjTNk2ZQBkKlGmbpkygDAXKtE1TJlCGAmXapikTKEOBMmvTlAmUoUCZtXM+EyhDgbLFSRWPFTITKEOBMuvmfAZQhgBl1u2ZGhMoQ4Ey6/ZMjQmUoUCZda/5xgTKUKDMutd8YwJlKFBm3Wu+MYEyFCiz7jXfmEAZCpQtT6p4rNQZQRkSlHX3QhkTKEOBMm9foJhAGQqUeXc4yphAGQqUeXc4yphAGQqUtQJlTKAMBcpagTImUIYCZa1AGRMoQ4GyVqCMCZShQFkrUMYEylCgbAtUPN5cmEAZCpR1AmVMoAwFynYZ1ONCW2MCZShQNts0ZQJlKFA22zRlAmUoUDbbNGUCZShQNts0ZQRlSFA22zRlBGVIUNa24zNGUIYEZbNNU0ZQhgRlm6Di8UbJCMqQoCy6NGUCZShQFtLtezCBMhQoizZNmUAZCpRFm6ZMoAwFyqJNUyZQhgJl0aYpEyhDgbJo05QRlCFBWbRpygjKkKAs2jRlBGVIULYJKvgtjMYIypCgLLs0ZQRlSFC2q6CCZykTKEOBsi1Q8dg7YQJlKFC2OEm+SY8VGBMoQ4GyLVDBz2gZEyhDgbLFSRWPPQsmUIYCZYuTKh8vtkygDAXKFidVPt5KmUAZCpQtTqp8vJUygTIUKNvXQuXjzYUJlKFA2RaofCxvmUAZCpQtT6p8rD0YQRkSlC1PqnxMDIygDAnK9rVQ+ch1RlCGBGWboB5XvxsjKEOCsl0F9bjb25hBGRqULVCqeuQpMyhDg7IFSlWPPGUGZWhQtkCp6pGnzKAMDcq/pr7EGUE5EpR/3YloZwblaFD+dSeinRmUo0H51x3cd2ZQjgbluwyqlJ6wcmZQjgblux1fGW1Z4MygHA3Kt0GVP/4dJE0dDcp3O76ajxgkTR0Rync7vuIdMJ0hlCNC+S6DqnzEIGnqiFC+2/EVP/nmDKEcEcqXKI3v4z0tnCmUo0L5IqXxfeMRhGUqMpRvhvo+eQRhqYoQ5Ruivu+Rq0yiHCXKt0R9nz2CsGRFivLlSuP7HtnKLMrRonxb1Pc90pVplKNG+b4e6vse+co4ypGjfN8P9X2PhGUe5ehRvj3q+x4Zy0DKEaR8g9Q3HhnLRMpRpHzXRH3jkbGMpBxJyqXzfWck5UhSLl0htDOTcjQpl64Q2plJOZqUS9elx5lJOZqUb5P6HjfWOEMpR5Ryadr0ODMpR5Ny6c70OTMpR5Ny7c70OTMpR5Ny7ejUmUk5mpQvYXrOvQylHFHKN0q95l6GUo4o5RulXnMvQylHlPJdFvWaexlKOaKU7958r7mXoZQjSvkui3rNvQylHFHKd3O+19zLUOrPh78Y1c69TKUcVcrta+dexlKOLOU22rmXuZSjS7lJO/cymHKEKTdt515GU4405Wbt3MtsytGm3LydexlOOeKU22znXqZTjjrlFu3cy3jKkafcsp17mU85+pRvn3rOvQyoHIHK94VRz7mXCZWjULl3x/qdEZUjUbl3x/qdEZUjUbl3x/qdEZUjUbl3Z/ycEZUjUbl3Z/ycEZUjUfkmqu9xdZUzo3I0Kvfm+JQzonIkKveuls8ZUTkSlXtXy+eMqByJymcH/s6IypGofIHTc/5mRuVoVD6lm7+ZUTkalU/t5m9mVI5G5dO6+ZsZlaNR+fRu/mZG5WhUPmc3fzOjcjQq32VSr/mbGZWjUfnMdv5mSOWIVD6rnb+ZUjkqlcfXzt+MqRyZymO08zeDKkeo8pB2/mZS5ShVHtrO34yqHKnKw9r5m1mVo1V5eDt/M6xyxCqP2c7fTKsctcoj2vmbcZUjV/nmquf8zbzK0as8qp2/GVg5gpVndzTVGVg5gpVn1xzFmVg5ipVn1xzFGVk5kpVnu8fKyMqRrDy75ijOyMqRrHxfIPU97n1zZlaOZuVd4z5nZOVIVr786XXrkjOyciQrz3YNwMjKkaw82zUAIytHsvJq1wCMrBzJyqtdAzCyciQrr3YNwMjKkay82jUAIytHsvJq1wCMrBzJyqtdAzCyciQrr3YNwMjKkay82jUAIytHsvLq1wDMrBzNyqtfAzC0ckSr+bVrgMnYaiJbza9dA0zmVhPdan7tGmAyuJoIV/Nr1wCTydVEuZpfuwaYjK4m0tX82jXAZHY10a7m164BJsOriXg1v3YNMJleTdSr+bVrgMn4aiJfza9dA0zmVxP9ao5uDTCZX030qzm6NcBkfDWRr+bo1gCT6dVEvZqjWwNMhlcT8WqObg0wmV1NtKt57OpxqeZkdjXRruZo1gCTydVEuZpbrh7z92RwNRGu5oarx/w9mVtNdKs5uhPVk7HVRLaa+zqpx/w9mVpNVKu5r5N6zN+TodVEtJr7OqnH/D2ZWU00q7nLqB7z92RmNdGs5r5O6jF/T2ZWE81q7kZ+j/l7MrOaaFZTZjN/T2ZWE81qHrN6zN+TmdVEs5qS3fw9mVpNVKsp1c7fjK0mstXUr52/mVtNdKupo52/GVxNhKup0s7fTK4mytVUbedvRlcT6WqqtfM3s6uJdjXV2/mb4dVEvJo62/mb6dVEvZoa7fzN+GoiX03Ndv5mfjXRr6Z2hdST8dVEvpqnqOoxfzO9mqhX87T1e8zfDK8m4tU8l0s95glmVxPtapp28zejq4l0NQ9dPa7GnYyuJtLV3HT1mL8ZXE2Eq3mqqh7zN3OriW41T1XVY/5mbDWRraZ1B6wnU6uJajWtuvmbodVEtJq7quo1fzOzmmhWczf2e83fzKwmmtXcjf1e8zczq4lmNV27+ZuZ1USzmrux32v+ZmY10aymezd/M7OaaFbzmNVr/mZmNdGspkc7fzO1mqhW07OdvxlbTWSr6dXO38ytJrrVnF87fzO4mghXc452/mZyNVGu5pR2/mZ0NZGu5tR2/mZ2NdGu5rR2/mZ4NRGv5vR2/mZ6NVGv5pzt/M34aiJfzRnt/M38aqJfzdm19p2Mryby1Zxda9/J9GqiXs3oWvtOhlcT8WpGd9ZqMruaaFczujYVk9HVRLqah64eV7lPRlcT6Wp2d01NBlcT4WpG1wBgMrea6FYzugYAk7HVRLaap8jq9f/C8hTVau67pl7zN0OriWg1o7r5m5nVRLOa+XXzNzOriWY1c3TzNzOriWY1d6O/1/zNzGqiWc1dZvWav5lZTTSrmdbN38ysJprVPGb1mr+ZWU00q5mznb+ZWk1Uq5nRzt+MrSay1cxs52/mVhPdama18zeDq4lwNetr528mVxPlatZo529GVxPpapa08zezq4l2NUvb+Zvh1US8mmXt/M30aqJezfJ2/mZ8NZGvZs12/mZ+NdGvZtv2bzK/muhXs7rmKpPx1US+mtU1V5lMrybqVXydswbDq0C8iq9rrhLMrgLtKo5dDV5PF8yuAu0qvqa7SjC5CpSr+LruKsHgKhCu4uu6qwRzq0C3iq+rCwjGVoFsFafmij8Tg6lVoFrFqbni83cwtApEqzg1V/yJGMysAs0qTs0VfyAGM6tAs4oxmvk7mFkFmlXsxn+P+TuYWQWaVQxt5u9gZhVoVvEruOJPw2BoFYhW8Su44k/DYGgViFbxK7ji83cwtgpkq/gVXD1ylblVoFvFr+CKz9/B4CoQruJXcPXIViZXgXIVv4KrR7oyugqkqzgFV4/5O5hdBdpVnIKrx/wdDK8C8SpEu/k7mF4F6lWIdfN3ML4K5KsQ7+bvYH4V6FchXeeqYH4V6FchXeeqYHwVyFchXeeqYHoVqFchnbMGw6tAvArtGlQHs6tAu4pjV4PXsgezq0C7iq4RYDC5CpSr0K7ZSjC4CoSr0K7ZSjC3CnSr0K6rajC2CmSrODVXj2ciU6tAtYpTc/WYvxlaBaJVnJqrxxORmVWgWYVWN38zswo0q7Cvm7+ZWQWaVdjo5m9mVoFmFbsR4Gv+ZmYVaFbxq7d6PA0ZWgWiVfzqrR5PQ4ZWgWgVv3qrx/zN2CqQreJXb/XIVeZWgW4Vv3qrx/zN4CoQruJXb/XIViZXgXIVp97qNX8zugqkqzj1Vq/5m9lVoF2Fj3b+ZngViFfh0s7fTK8C9Spc2/mb8VUgX4VbO38zvwr0q2jbAgbzq0C/irYtYDC+CuSraNsCBtOrQL2Kti1gMLwKxKto2wIGs6tAu4pjV8L7yASzq0C7iq4vYDC5CpSr2HL1mr8ZXAXCVZy+gI/5m7lVoFvF7GoDg7FVIFvFqbl6PBOZWgWqVZyaq8f8zdAqEK3i1Fw9nojMrALNKvbVVK/5m5lVoFnFrG7+ZmYVaFax+wK+5m9mVoFmFTG6+ZuZVaBZxa/e6vE0ZGgViFbxq7d6PA0ZWgWiVfzqrR7zN2OrQLaKX73VI1eZWwW6VfzqrR7zN4OrQLiKX73VI1uZXAXKVZx6q9f8zegqkK7i1Fu95m9mV4F2Ffm18zfDq0C8ihzt/M30KlCvIqWdvxlfBfJVpLbzN/OrQL+K7G6tCOZXgX4V269e8zfjq0C+inNR1WP+ZnoVqFeRnbMGw6tAvIoFUc/5m9lVoF3FsSvhPdyC2VWgXUU1/deCyVWgXMWRK+G9aILJVaBcRXdTVTC3CnSrWAb1qoULxlaBbBXVWgBTq0C1imotgKFVIFpFtRbAzCrQrKJaC2BmFWhWUa0FMLMKNKuo1gKYWQWaVX6dBSQzq0Szyq+zgGRmlWhW+XUWkIysEskqv84CkplVolnl11pAMrRKRKv8WgtIplaJapVfawHJ2CqRrfJrLSCZWyW6VX6tBSSDq0S4yq+1gGRylShXOVoLSEZXiXSVo7WAZHaVaFc5WgtIhleJeJWjtYBkepWoVzlaC0imV4l6laO1gGR6lahXOToLSIZXiXiVo7OAZHaVaFc5OgtIRleJdJVtzVUyuUqUq5TOApLBVSJc5YEr4f1sksFVIlylNGuAZGyVyFYpnQUkU6tEtUrpLCAZWiWiVUpnAcnMKtGsUjoLSGZWiWaV0llAMrNKNKuUzgKSmVWiWaV0FpDMrBLNKrWzgGRmlWhWqZ0FJCOrRLJK7SwgmVklmlVqawHJ0CoRrVJbC0imVolqldpaQDK2SmSr1NYCkrlVolulthaQDK4S4Sq1tYBkcpUoV6mtBSSjq0S6SmstIJldJdpVWmsByfAqEa/SWgtIpleJepXWWkAyvUrUq7TWApLpVaJepXUWkAyvEvEqrbOAZHaVaFdpnQUko6tEusq25iqZXCXKVVpnAcngKhGu8sCV8H42yeAqEa6yu8oqGVslslUugnq9wydTq0S1yvYqq2RolYhW2V5llcysEs0qvV0DMLNKNKv0dg3AzCrRrNLbNQAzq0SzylNxJbzXQTK0SkSr9G4jIBlaJaJVznYjgJlVolnlbDcCGFololXOdiOAoVUiWuVsNwIYWiWiVc5+I4CpVaJa5ew3AhhbJbJVnmIr4eW0ydwq0a3yFFsJr+lJBleJcJW/ZoGPJQ2Tq0S5ytMsUPjp5GR0lUhX+WsW+Pj9MrtKtKs8zQKl6I1DyfAqEa+ybxaYDK8S8SoPXikX42R4lYhX+cOrx2OA4VUiXuUPrx7PAYZXiXiVP7x6PAgYXiXiVf7w6vEkYHiViFf5w6vHo4DhVSJe5a9Z4ONRwPAqEa8y247ByfAqEa8yu47Byewq0a4yu47Byegqka4yu47ByeQqUa4yu1MByeQqUa4yu47ByeQqUa7yFF4p155kdJVIV5lNx+BkcpUoV9l2C0wmV4lylW23wGRwlQhX2XYLTCZXiXKVbbfAZHCVCFfZdgtMJleJcpVtt8BkcpUoV9l2C0wmV4lylW23wGRylShX2XYLTCZXiXKVbbfAZHKVKFfZdwtMRleJdJV9t8BkdpVoV9V3CyyGV4V4VX23wGJ6VahX1XcLLMZXhXxVfbfAYn5V6FfVdwss5leFflV9t8BiflXoV9V3CyzmV4V+VX23wGJ+VehX1XcLLOZXhX5VfbfAYn5V6FfVdgssxleFfFVtt8BielWoV9V2CyyGV4V4VW23wGJ2VWhX1XYLLEZXhXRVh66Un5IoRleFdFVdt8BiclUoV9V2CywmV4VyVW23wGJyVShX1cpVMbkqlKtquwUWk6tCuaq2W2AxuCqEq2q7BRaTq0K5qrZbYDG5KpSrarsFFpOrQrmqtltgMbkqlKtquwUWk6tCuaq+W2Axuiqkq+q7BRazq0K7qr5bYDG8KsSr6rsFFtOrQr2qvltgMb4q5KvquwUW86tCv6q+W2Axvyr0q+q7BRbzq0K/qr5bYDG/KvSr6rsFFvOrQr+qvltgMb8q9KvquwUW86tCv6q2W2Axvirkq2q7BRbTq0K9qrZbYDG8KsSrarsFFrOrQruqtltgMboqpKs6dKX8hEMxuiqkq+q6BRaTq0K5qrZbYDG5KpSrarsFFpOrQrmqVq6KyVWhXFXbLbCYXBXKVbXdAovBVSFcVdstsJhcFcpVtd0Ci8lVoVxV2y2wmFwVylW13QKLyVWhXFXbLbCYXBXKVfXdAovRVSFdVd8tsJhdFdpV9d0Ci9lVoV1V3y2wGF4V4lX13QKL6VWhXlXfLbAYXxXyVfXdAov5VaFfVd8tsBhgFQJW9d0CiwFWIWBV3y2wGGAVAlb13QKLAVYhYFXfLbAYYBUCVrXdAov5VaFfVdstsBhfFfJVtd0Ci+lVoV5V2y2wGF4V4lW13QKL2VWhXdXPrvgJh2J2VWhX1XULLCZXhXJVbbfAYnBVCFfVdgss5laFblVtt8BibFXIVtV2CyymVoVqVW23wGJoVYhW1XYLLGZWhWZVbbfAYmZVaFbVdgssZlaFZlVtt8BiZlVoVtV2CyxmVoVmVX23wGJoVYhW1XcLLIZWhWhVfbfAYmxVyFbVdwss5laFblV9t8BicFUIV9V3CywmV4VyVX23wGJ0VUhX1XcLLGZXhXZVfbfAYnhViFfVdwsspleFelV9t8BifFXIV9V3CyzmV4V+VW23wGJ+VehX1XYLLMZXhXxVbbfAYnpVoFf6dd0Cz+j/j/H3w1+MplvgGb1iDIyxk1XpCbQzfAURDPLuFngGrxCKIZoKwTN6xTCM0VQIntErhmOMpkLwjF4xJsZoKgTP6BUjMEZTIXhGrxiJMZqDgWf0ioF52nULPKMYY2Cedt0Cz+gVA/O06xZ4Rq8YmKZdt8AzesXAPG27BZ7hKwgmatst8AxfQTBT226BZ/gKgqnadgs8w1cQzNW2W+AZvoJgsrbdAs/wFQSzte0WeIYxiGC6tt0Cz/AVBPO17RZ4hq8gmLBtt8AzfAXBjG27BZ7hKwhmbNst8AxfQTBju26BZ/SKgQnbdQs8o1cMzNeuW+AZvWJgunbdAs/oFQOztesWeEYxhmKyHrtSejz4DF9BMFmbboFn8AqBqdp1CzyjVwzM1K5b4Bm9YmCidt0Cz+gVA/O06xZ4Rq8YmKddt8AzesXAPO26BZ7RKwbmadct8IxeMTBPu26BZxRjGOZp1y3wjF4xME27boFn9IqBedp2CzzDVxBM1LZb4Bm+gmCmtt0Cz/AVBFO17RZ4hq8gmKttt8AzfAXBZG27BZ7hKwhma9st8AxfQTBd226BZxiDOOZr2y3wDF9BMGHbboFn+AqCGdt2CzzDVxDM2LZb4Bm+gmDGdt0Cz+gVAxO26xZ4Rq8YmK9dt8AzesXAdO26BZ7RKwZma9ct8IxeMTBZj10prcw5wxhkYrI23QLP4BUCU3U2FYJn9IqBmTrbNQBxq78f/mK0awDCVn8//MVo1wBErf5++IvRrgEIWv398BejXQMQs/r74S9GuwYgZvX3w1+Mdg1AzOrvhydGtGsAYlZ/P/zFaNcAxKz+fviL0a4BiFn9/fAXo18DELP6++EvSL8GIGr198NfkH4NQNjq74e/IP0agLjV3w9/Qfo1AIGrvx/+gvRrACJXfz/8BenXAISu/n54gmS/BiB29ffDX5B+DUDw6u+HvyD9GoDo1d8Pf0H6NQDhq78f/oL0awDiV38//AVp1wCEr/5++IvRrgGIXv398BejXQMQvPr74S9GuwYgdvX3w1+Mdg1A6OrvhyfGYij3+G/++04VYhC5+vvhL8ZYMeS/Of/3hWEMlqqFqdo0CzyDVwhM1K5Z4Bm9YmCeds0Cz+gVA9O0axZ4Rq8YmKbVblcRsvr74S/Gv5ybc/7n43+VmB6ErP5++IuxmlrOx6OMkNXfD38xmmMrZ/SKAWk6vubYyhmFGAPJanzNsZUzesUYGENWqitN9cHEaqBYjU6sBhOrgWI1Fj+9Un0wsRooVuNrTq2c0SuGY4zm1MoZvWJMjNHI6hm9YgTGyCbVBxOrgWI1Fj+9Un0wsRooVmM0J6zPKMZAsRqjOWF9Rq8YmKajOWF9Rq8YmKaLn9yNpzoTq4FiNcb7cNUZvEJgmi57eqY646qBXDVGc8D6jF4xME1Hc8D6jF4xME1HcwjwjF4xME1HdanOqGogVY3dHvCV6kyqBkrVkKYY8IxeMTBNpSkGPKNXDExTaYoBz+gVA9N0kZO781RnSjVQqYa86wDO4BUC03SB0zPVmVENNKohTS3gGb1iYJpKUwt4Rq8YmKbS1Kuc0SsGpuk2qleqM6MaaFRjedMz1RlRDSSqoU3fijN6xcA01aZvxRm9YmCaatO34oxeMTBNFzi5T57qzKgGGtXQd8nqGbxCYJoub3qmOiOqgUQ1tGlbcUavGJim2rStOKNXDExTa0qrzyjGQKIaNrpUZ0Q1kKjG8qZnqjOiGkhUYxPVK9WZUA0UqrGF6pXqDKgGAtWwbht1MJ8a6FNjWdPr1XYwnhrIU8Pe3VXO4BUC03RB0zPVmU0NtKmxbeqV6oymBtLU2DT1SnUmUwNlanjTBeiMXjEwTXc/wFeqM5ca6FJjGdMz1RlLDWSpcfoBPlKdqdRAlRpHpR6pzlRqoEoN7079DaZSA1VqnKIqpZ3NzvAVBBN1s9Qj15lKDVSpcUqqlN4feYavIJioh6WMtiQ7wxgEWWrMfT6V73wO5lIDXWp0t1id0SsGZmp3i9UZvWJgps7mppUzesXATJ3NTStn9IqBmTqbm1bO6BUDM3Xuif/7z+J/Ma4YLFHRpcbs9k4Hc6mBLjVOL0CjvbfO8BUEMzXeN62cQQyBLjVOJ0CjPUTO8BUEE/V0AjRayHyGryCYqUemjFZTneErCKbqlinz/+b4X8jAGCxVEabGgSnjx8IHg6mBMDWifeVnLjXQpUa0r/yMpQay1Ij2lZ+p1ECVGtFtoA6GUgNRamS7gcpMaqBJjeVLz98uI6mBJDWy3ZliIjVQpMbSJfse7zAMpAaC1Fi4ZJasAecZvWJgomb3ys84aiBHjc1Rr98L46iBHDWWLemsx9fB0hQ5anQtAM/oFQPTtGsBeEavGJim1b5LMY4ayFGj2p0pxlEDOWpUuzPFPGqgR41qd6aYRw30qHGqqIwfsR0MpAaC1Fi6JP/N/N+XmGKMowZy1Fi2JK9fC+OogRw1li3JF48YLE2Ro8bpAGj8xNJgHjXQo8bCJfHv8Q9heYoeJQuXxPW/+P7nBb85YR4l6FFy+v8ZX7QLAylBkJKlS/Jv65L87woDKUGQksVL4pN+IcJESlCkZNdQjcf3QdJUEKRk6ZI4TxBhICUIUrJ0SZw/C4WBlCBIydIl+XcHH/13kEQVBClZuiT8yIQwjxL0KNlt/0b95/6/GIoxSJoKepScW6useHowkBIEKVm6FCMeMViaIkjJ0qUYyf9fGEgJgpQsXYpRPMcYSAmClCxeCvkefwvLUxQpWbwU8sh1JlKCIiWngMr5O64wkhIkKTkFVM7fYYSZlKBJySmgcnn8OSxXEaXkFFD9c3H6vbJkRZUS6ZOVsZQgS8kpoHL+FiPMpQRdSk4BlTt/BDCYEoQpOQVU/7ba6Z/D8hVlSk4BlT9+fIymBGlKTgGVP359DKcEcUqWND1/OQynBHFKTgNA59tDwnRKUKdEukcrwylBnBJpH60MpwRxSrTPVqZTgjol2j5amU4J6pSc5n/z8ShhPCXIU6LaPZ8ZTwnylCxrej6fGU8J8pSc1n/z8UhjPiXoU7K0yU3//fd+ib9eBlSCQCWn89+U/7z+N/FNRJhQCQqVLG6KOf+bH4vBchWFSs7FVZPv7QgjKkGikuVNz2+EEZUgUcm5t+r1jTCjEjQqWeD0/EaYUQkalZwyqvl4xDOkEkQqWeL0/kZYsiJSyamien4jLFlRqWSR0/sbYcmKSiWniGryHTNhTiXoVLLQ6f2NsGRFp5JTQ/X8RliyIlTJUqfnN8KgShCq5JRQTf7eLEyqBKVKTgnV5G+bwqhKkKrklFBN/u4szKoErUpOCdV8TJwMqwSxSrrLq87oFQOz9bQAjMdkw7RKUKtkydMz0xhWCWKVePtoZVolqFVytCoekw3TKkGtkqNVIfz/l2mVoFbJaQAY/FypMK4S5Co5DQDj8VxkXiXoVdLWUQnzKkGvkraOSphXCXqVzO6svzCvEvQqWfj0kmZhXiXoVXKa/8Xj0crAShCs5Nxe9XosMrESFCs5YhXzvyn/q/trZdmKYiXn9qp4PNKYWQmalUS/EmBmJWhWcszq9ecwsxI0KzlmFY8tNGZWgmYlp5rq+eewfEW0koNWzz+HJSyilZxqqng85plaCaqVRL9yZWwlyFZyqqmefw7LWHQrOdVU+ZgsGFwJwpUshZJ/2EOERBhcCcKVLIXKybfAhcGVIFzJhqsa/3n+b16zJ4MrQbiSpVD++lIZXAnClSyFysmPZQuDK0G4ksVQ8q8sLP73XW9qTK4E5UpOH8B8TJ6MrgTpSnYl1etFnNGVIF3JpqvnfwzLVKQrWQ71/lJZoiJdSX3dl8roSpCu5PQAzMdigtmVoF3J6QGYjzdGhleCeCVLop4/O4ZXgnglZd3PjtmVoF3JLqZ6/e8yvRLUK1kU9fzZMb0S1Cs5evX632WZinolR6/ysUBjeiWoV1Lt3hXTK0G90l1N9fhSlemVol7pN5qfjDK8UsQr3Xj1+FKV4ZUiXum5u+rxk1GmV4p6pefuquSrPGV+pehXeu6uSv7OqQywFAFLz91VyRVMmWApCpaeu6uSL4uUEZYiYem+u6r4Rqsyw1I0LF0gJSNoFwJlhqVoWDp2heojSRhhKRKWLo+ayrc3lRGWImHprqma+Z/r/+z6PhhhKRKWLo+a/76P+F/O69/BchUJS/fNVSMfMViqImHpLqoa9YjBMhUJSxdHzX8b8eRcszLBUhQsXRo1ZTxisDxFwNIDWMkXzcoASxGwdGHUa0tCmV8p+pUui3omO+MrRb5S2U/VpHvoyvRKUa/06FXxZbcyvVLUKz16VVzBlemVol7p0avihxuV6ZWiXunRq8cGmjK9UtQr3e3/vuJrImV8pchXeviq+PytjK8U+UrP/VWP/SJlgKUIWHrur3rsFykTLEXB0iNY9Zj0mGApCpaeHoD1mPQYYSkSlh7CKr4roYywFAlL2y6AyghLkbC07QKojLAUCUu127lSJliKgqU6m/oGZYKlKFh6BKseiwAmWIqCpdouAphgKQqWarsIYIClCFhq7SKAAZYiYOmusVJ+NkiZXyn6lVq7CGB+pehXau0igPGVIl+ptYsAxleKfKXWLgKYXinqlVq7CGB6pahXau0igOGVIl7p6QBYj0UA0ytFvVJrFwEMrxTxSlu8UoZXinilG6/G95jAGV4p4pV6u7+qDK8U8Uo3Xo2Pb/IowytFvNKNV8aXNIyuFOlKN12N77GQYHalaFfqXUmAMrpSpCv1riRAGV0p0pV6VxKgjK4U6Uq96wKgTK4U5Upn1wVAGVwpwpUeuHq9rjK4UoQr3XA1vsfijMGVIlzpPKn6WJwxuVKUK10M5flYajK5UpQrXQzl/15HaAyWqihXuhjKix9RViZXinKlS6H8tYBncKUIV7oQyuuxVmVupehWut1qfI9lJnMrRbfS7VbjsR+pzK0U3UqjqwlUxlaKbKVxcvWxVGVspchWGtr/NSxXka10EdT7r2G5imqlcZ6rjzUiUytFtdKtVu+/hmUrqpUugXr/NSxbEa10o9X4HosAhlaKaKVR/V/D0hXRSvPr/hqGVopopbsD4BiPVQBTK0W10pT2r2FspchWugzq/dewbEW20t0AcIzHSoK5laJb6S64GuOxDGBwpQhXuuFqjMdsw+BKEa70wNV4zDZMrhTlSrdcjfF4MjK6UqQr3XRVj61NRleKdKW76mqMx0s8sytFu9I6+fp4MjK7UrQr3XY1xuOBxOxK0a50F179MxIehCUs4pXuyqt/y0UehCUs6pVuvfq3XuRBWMIiX+kuvvr3D2ELaMZXinyl+/qqf4tOHoTlK/qVVlsqoMyvFP1Kqy0VUAZYioBlG7BeB/SNCZahYNmpv3oc0DdGWIaEZecOq8cBfWOGZWhYdgzrcUDfmGEZGpYdw3rsCRozLEPDss+bU/7GCMuQsGwT1hD+gDVGWIaEZYujXkU2xgTLULBscVQ8ct6YYBkKln3nDMvjSyXZaihYtjgqhBcLGhMsQ8GyxVH2r1U7jcFyFQXLdhGW8DdxY4JlKFi2OMqUA4UxwTIULDtFWP6IwRIVBcsWR/njoWhMsAwFyxZH2b8NQdIgyJhgGQqWjfNgNf4kYoRlSFi2OMrs9cewREXBssVRIfMRgyUqCpbtCqx/pdP0l8sIy5CwbFdg/aud5kFYqqJh2Tasf4eVeRCWq2hYtg1rCF9MGDMsQ8Oy5VESvKrFGGEZEpbJWQbwBYkxwjIkLNuENZQvSIwRliFh2SasoXxBYoywDAnLNmEN5ctwY4RlSFh2arD0MUswwjIkLNuENfgN0GcYgyBh2Sas8biG0hhhGRKWbcIaj7uwjBGWIWHZJqzxuJDDmGEZGpZtwxqPXlDGEMsQsWwj1ng9G5liGSqW7T6B49HIyRhjGTKWbcYaNug+tjHGMmQs24w1TB5/DstYdCzblVjD9BGEZSxCli2Vyn/3JZDDucYgyxCybFdiDTP+D2GSZShZtiVrtR6hQVjCImXZLsUaNh9BWMKiZdmCKc3vEYPlK1qWLZiS+v6z/J9+hTFYuqJlmZ105Q0DjWGWIWaZnXTNRxCWrqhZZiddH/MF0yxDzTKr9ifMOMuQs2w3DXz++phnGXqWHc96dNww5lmGnmUu7U+YeZahZ9myKR2Pr4RxliFn2eas8ai6NwZahqBlB7RezxIGWoagZUunns8SBlqGoGVLpzR47w9joGUIWrZBa/hjPcBEy1C0bBdjDX+sBxhpGZKW7WKs8aj+N2ZahqZls3+8MtMyNC2b/eOVmZahadnsH6/MtAxNy2b7eGWmZWhaNtvHKzMtQ9Oy2T9eGWoZopbN/vHKVMtQtWy2+wJMtQxVy45q+WPRyFTLULUs2h4CxlTLULUsztP1sfJkrGXIWnZYyx8rT8Zahqxli6i0eDMzY6plqFq2iMq+xwYUUy1D1bLorgwwhlqGqGULqOx77D8x0zI0LduVWMMfK3GGWoaoZQuo3l8qS1Y0LVs+9f5SWa4iaVmeR+tjTcJMy9C07JjWo1eFMdMyNC1bPvX8RhhpGZKW7UutxqPPhDHTMjQty64fuzHSMiQtO6Q1H3MnIy1D0rJDWq9VGiMtQ9Ky3UbwtTZiomUoWrZ06jlPMNAyBC3bbQTHo+GFMdEyFC07ovXoEWFMtAxFy45oPdoqGBMtQ9GypVPyKD0wBlqGoGUHtCbveGkMtAxByxZOPf9vmGcZepYdz5r8uI8xzzL0LNt3W/07RMm/VpatCFpWXeWgMc8y9CzbnjUeXRWMeZahZ1l1/mqMsww5y3c3wcd/jTPNctQs35o1Hp0ZnGmWo2b51qzx6IjgTLMcNcu3Zo3gjzRnmuWoWX76CQZ/CjjTLEfN8s+70w/OOMuRs/xw1qOtgjPOcuQs3xVZIzhYOvMsR8/yL/s/h+SrI2j5Vw1GOQMtR9DyA1ockpyBliNo+Tj5ypetzkTLUbR8nHzly1ZnpOVIWj5OvvLnkTPTcjQtHydf+bPEGWo5opaPna+PgnlnquWoWr5bC45HYbYz1nJkLT+slY/fMGMtR9byXZk1HoXIzlzL0bV8txYcj6JZZ7DlCFt+Wgs+eiI4gy1H2PLTWvBxotoZbDnClh/YelSaOoMtR9jyU5z1/HNYxiJs+SnOev45LGNRtvzI1qPm1ZlsOcqWL6V6Tn8Mthxhyw9s5eNJwGDLEbb8wNajbtYZbDnClku77+oMtv58eIJou+/qDLYcYcsPbD22TJ3BliNs+UKq12uBM9dydC0/rvXY7XTmWo6u5cuoXrudzljLkbV83371SnmmWo6q5T/V4tuDzlTLUbX8p1p8e9CZajmqlv9Ui28POlMtR9XyXZ31+vEx1HJELbev29pzplqOquU/1eJbe85Uy1G1/KjWoxjYmWo5qpYf1XoU0DpTLUfV8n0L1r8mCzwIy1dkLd8dBsejgNaZazm6lh/XetS+OnMtR9fy41qP2ldnruXoWn5c61Fx6sy1HF3Lj2s9Kk79/1h7tyXHcV1d9136el6IpHiab7CfYcUOh8tWZqrLaXtIdh16xnr3HRJJiIBAF7Lnvhoe6S5QligSxPcD4LiWpVzLZq7VyDi1HNeylGvZzLUaGZaW41qWci2buVYjc81yXMtSrmVtzn1tzFgObFkKtmxuiNVI9rIc2LIUbNlcZLCRqWU5sGUp2LIlU6sxYzmyZSnZsjlVq5EQZDm0ZSnasjlXq5G8Yjm0ZSnasjZ3b2vMWA5tWYq2bEJbupF4Yjm0ZSnasglt6Ua+h+XQlqVoy2a01eAnlkNblqIt617VF7Ic2bKUbFnXv5ISWw5tWYq2rLOvVMCWY1uWsi3r3CsVsOXYlqVsy+ZSgw0VsOXYlqVsy+ZSgw0VsOXglqVwy7qXPgHHtixlW9bn+dpY1zi2ZSnbsolt6UYOjOXYlqVsyya2pRupJ5ZjW5ayLetzH7fGusbBLUvhlvW5vEBjXePolqV0y6acLd1IPbEc3rIUb9ncHquRemI5vmUp37KlP1ZjXeP4lqV8y/rwQgxsOb5lKd+yuUFWI/XEcoDLUsBlc4espQY69w5zgMtSwGUL4OIj9ZYDXJYCLpt7ZCm+UoHlCJelhMsmwrWkjfBGuAlLCZfNhKuRv2I5xGUp4rIhF8RovDoc4rIUcdmEuHQjqcByiMtSxGVXXuUiL6K3HOKyFHHZ3CmrIfi2HOOylHHZ3CpLN8LBHOOylHHZ0iuL1+5YjnFZyrjsyqtio+CQ5RCXpYjL5mZZDbG25RiXpYzL5m5ZDbG25RiXpYzLrsCq+YA5xmUp47LRvnzAHOOylHHZ6F4+YI5xWcq4bGJc7QfMzVcKuewKrNoPmJuulHHZmKdrYy/nIJelkMulnC3d0K87jnI5Srlcoly6oV93HOVylHK5RLl0Q7/uOMrlKOVyiXLphn7dcZTLUcrlEuXSDf264yiXo5TLJcqlG/p1x1EuRymXS5RLN/TrjqNcjlIulyiXbujXHUe5HKVcbiVWseNdacdBLkchl+viqx3UcZTLUcrlVPdqB3Uc5nIUczmVJyy/rDkOczmKuZzKE5Z//xyHuRzFXC5hrkbRT8dRLkcpl0uUSzcU/Y6jXI5SLpcol2603nUc5XKUcrlEuSzvZzkOcjkKuVyCXLrRe9dxkMtRyOUS5NKN3ruOg1yOQi6XIJdu9N51HORyFHK5BLl0o2+u4yCXo5DLJcilGw0nHQe5HIVcLkEu3WjT6DjI5Sjkctq88scdB7kchVwuQa6WP+44yOUo5HLavlxNOMjlKORy2r1cTTjK5SjlcjrP2MZqwlEuRymX03nGNlYTjnI5Srlcoly60cDOcZTLUcrlMuVqPR2OcjlKuZxRL58OR7kcpVzO6JdPh8NcjmIulysQNjIDHIe5HMVcLpcgbIjpHce5HOVcLtcgbIjpHQe6HAVdLoEu3RDTOw50OQq6XAJduqGTdhzochR0uQS6dEPi7DjQ5SjocibP2MaixJEuR0mXW6lVKxvUcaDLUdDlVmgVIn++cBzncpRzucy5Gik1juNcjnIu1+f52lhNOM7lKOdyfZ6vjdWE41yOci6XOJdu6IIdx7kc5VwucS7d0PQ6jnM5yrlc4ly6ocd1HOdylHO5xLl0Q8LqOM7lKOdyiXPphoTVcZzLUc7lEufSDQmr4ziXo5zLJc6lG820HMe5HOVcLnEu3Wim5TjO5SjncplzNWoBO45zOcq5XOZcDdmn4ziXo5zLlWZajRnLcS5HOZdbmdVCYzgI4jjM5SjmcvYlNXAc5nIUc7mMuRq6T8dhLkcxl8uYq6H7dBzmchRzuYy5GrpPx2EuRzGXy5irIdl0HOZyFHO5hLl0o/OT4zCXo5jL5XZaDZWj4ziXo5zL5X5aDZWj4ziXo5zL5YZaDZWj4ziXo5zLJc6lGypHx3EuRzmXS5xLN1SOjuNcjnIulziXbqgcHce5HOVcLiVx6YbK0XGgy1HQ5VZo1aoa6zjO5SjncplzNZSSjuNcjnIulzlXQynpOM7lKOdy3rxakjjM5SjmchlzNTSOjsNcjmIulzFXQ1noOMzlKOZyBXM1zpAc5nIUc7kVWTUDUhzlcpRyOZ+na+MV5jCXo5jLZczVkCc6DnM5irlcxlwNhZTjMJejmMslzKUbCinHYS5HMZfLtQn5FA7HUS5HKZdbiVWLVDsOcjkKuVyGXA2lluMgl6OQy2XI1ZppHORyFHK5FVg1ZxrHuBxlXC5VJtQNyZjjIJejkMtlyNWQjDkOcjkKuVyGXA3JmOMgl6OQy2XI1fL4OMjlKORyMU/XxoLEUS5HKZfLlKuhO3Mc5XKUcrlMuRq6M8dRLkcpl0uZXK01mqNcjlIulylXQ7vmOMrlKOVy8aX/ykEuRyGXS421Wm8wx7gcZVwu5unaWNM4yOUo5HIJcpmGhs5xkMtRyOUT5DINDZ3nIJenkMsnyGUaGjrPQS5PIZdPkMs0NHSeg1yeQi6fIJdpaOg8B7k8hVw+QS7T0NB5DnJ5Crl8glymoaHzHOTyFHL5BLlMQ0PnOcjlKeTyCXKZhobOc5DLU8jlUyqXaaijPEe5PKVcfiVWIfB42HOQy1PI5VdgFQJPzD3HuDxlXH7lVa1X2HOIy1PE5VVuAcOXK/cc4vIUcfmEuExDLuY5xuUp4/KJcZmGXMxzjMtTxuVXXhUaBdw9h7g8RVw+IS7TkJx5jnF5yrh8YlymITnzHOPylHH5xLhMQ3LmOcblKePyKiXK8kIvzyEuTxGXX3FViHyRQ88RLk8Jl08tthp5JJ4DXJ4CLr/CqtDQmXiOb3nKt/zKqlq5KJ7DW57iLZ+KEzYaKHqObnlKt7y2LxKYPQe3PIVbfgVVrQrhnmNbnrItr185Ap5DW56iLa/zRG1sNRza8hRt+YS2TEPW6Dm05Sna8gltmYYk0XNoy1O05XMCV0OK5Dm05Sna8gltmUZJbc+hLU/Rljd5ZW3sVxza8hRt+VyZsCEc9xza8hRt+RVTtYTjniNbnpItb7Jcu3Uh3HylZMvn/loN9bnnyJanZMubXFKbV597jmx5Sra8ySW1+XOj58iWp2TL992rOLLn0JanaMv3OUWWV597jm15yrb8yqmaCwGHtjxFWz6hLdOo3u45tOUp2vIJbZmG+tVzaMtTtOUT2jIN9avn0JanaMvnFK5G+QDPoS1P0ZZfMZVXrQfMzVdKtnwiW6Yhw/Uc2fKUbPlEtoxuuBMc2fKUbPnUaKv1aziw5SnY8glsmUa9Y8+BLU/Blk9gyzTqHXsObHkKtrzN87WxXXBgy1Ow5VdI1So14zmu5SnX8jZP18ZuwXEtT7mWt68Suj3HtTzlWj5xrVapGc9xLU+5lrd5uja2LY5recq1fOJapiFc9RzX8pRr+ZVRWc9X4fMc1vIUa3n38pzFUS1PqZZPVMs0BLSeo1qeUi2fqJZpCGg9R7U8pVo+US3TENB6jmp5SrV8olqmIaD1HNXylGr5XJmwkbHvOarlKdXypTIhn7HvOarlKdXy7mWdYs9RLU+plncv6xR7jmp5SrW8f1Wn2HNUy1Oq5f3LQpqeo1qeUi3vXxbS9BzV8pRqef+ykKbnsJanWMv7V4U0PUe1PKVa3r8qpOk5qOUp1PL+ZSFNz0EtT6GW9y8LaXqOanlKtXyiWqahPPcc1fKUavnXDbc8R7U8pVo+US3TkK97jmp5SrV8olqmIV/3HNXylGr5l9UJPUe1PKVafkVUrXqNnqNanlItH/oXBSw9B7U8hVo+QS2+zJPnkJanSMunvC3T0L97jml5yrR8ytsKPGfwHNLyFGn5FU81QxQc0fKUaPnwKi/Wc0DLU6DlY56pDZeEA1qeAi2/wikfG5Ffjmd5yrN84lmmoeX3HM/ylGf5lU352FhFOJzlKc7yK5uKrdMrh7M8xVk+2leBMI5meUqzfHzptXI0y1Oa5aN/0YXFczTLU5rlE80yjfwIz9EsT2mWzzSrkdvgOZrlKc0KmWY1chsCR7MCpVmhUy+mSOBgVqAwK6xgqjVFAseyAmVZoTMvpkjgUFagKCt0r2poBo5kBUqyQiZZjVyPwJGsQElWWKlU8Pw8CxzIChRkhS5lw/LNXQPHsQLlWGFlUi7yMbDAYaxAMVZIGMvzrCRwGCtQjBXUqwqagcNYgWKskFK1TCN/JnAcK1COFVReVXlHJHAcK1COFTLHauTPBI5jBcqxwsqkWptm4DBWoBgrrEyqtWkGDmMFirGCerWsBo5iBUqxQqZYjbyXwFGsQClWyBSrkfcSOIoVKMUKK5Jq31VuslKKFVYk1byrHMUKlGIF/SoWEDiKFSjFCilNyzRyeAKHsQLFWCGlaZlG0kvgOFagHCukNC3TSHoJHMgKFGSFlKZlGkkvgSNZgZKskNK0TCPpJXAoK1CUFVKalmkkvQSOZQXKskJmWY2kl8CxrEBZVsgsq5H0EjiWFSjLCqXLFh8fCRzLCpRlhVKMkI+PBI5lBcqygnnZBCZwLCtQlhXMqyYwgUNZgaKskIoRNmB24EhWoCQrGPsCZgeOZAVKskIpRsjHegJHsgIlWWGlUq1YT+BAVqAgK6xQqkXEA8exAuVYYWVSLSIeOIwVKMYKCWOZRk5T4DBWoBgrrEiq6SpyFCtQihV6/QKrB45iBUqxwkqkmhsFB7EChVgh1yFsBOECB7EChVgh1yFsBOECB7EChVih9Nfig3CBg1iBQqywEqlWEC5wECtQiBX6V10KAsewAmVYIVchbAThAsewAmVYoXTXapyNOIgVKMQKGWI1EvACB7EChVghVyFsLfEcxAoUYgVrXi7xHMQKFGKF3F6rtcRzFCtQihVWItVc4jmIFSjECvb10spRrEApVrAvl1YOYgUKsUJur9V6gzmIFSjECrm9VusN5iBWoBAr5PZarTeYo1iBUqywIqnmG8xRrEApVnCvJAKBg1iBQqxQmms13mAOYgUKsYLrX77BHMQKFGKFDLEa2a+Bg1iBQqyQIJZpZL8GDmIFCrFCglimkf0aOIgVKMQKGWI1svoDB7EChVjBvazgEjiIFSjECv5lBZfAUaxAKVZIFMs0knkDR7ECpVghUSzTSOYNHMUKlGKFRLFMI5k3cBQrUIoVUnKWaSTzBg5jBYqxgs8ztnGs4DhWoBwr+DxjG64ax7EC5VjB5xnb2P04jhUoxwork2ql8AUOYwWKsULCWKaREBw4jBUoxgoZY3nFLyccxgoUY4XwMjTAUaxAKVZIuVmmkcsbOIwVKMYKK5Nq3lYOYwWKsUJKzjKNfODAcaxAOVZIHKt9W7npSklWCC/jWBzIChRkhZScZRqJyYEjWYGSrBByFW02by5wJCtQkhVWLGUiX8cicCQrUJIVVirVIp2BA1mBgqyQMrOaT4YjWYGSrBBfegMcyAoUZIWUmGUa2d6BI1mBkqywYqnmhOdIVqAkK+QWW42ny5GsQElWSNUH23eVm6sUZYWXiVmBQ1mBoqyQUVYj/T1wKCtQlBVWLNW+q9xcpSQrdt2Luxo5kBUpyIrdy7kaOZIVKcmK3au5GjmSFSnJijkrq1EPIHIoK1KUFXODrdYdYeZqpCgrrliqtYpEjmRFSrLiiqVaq0jkSFakJCvmlKzmk2HmaqQoK3avogKRQ1mRoqy4cqlW59HIoaxIUVZU2Qfg3aLIsaxIWVbMLKtRqCFyLCtSlhUzy2oUaogcy4qUZcXMshqFGiLHsiJlWTHnZDUKNUQOZkUKs2KqO2gaRRYiR7MipVkxJ2U1iixEDmdFirNixlmNAgmRw1mR4qyYcVajQELkcFakOCumwoOmUZcgcjwrUp4VU+FB06hLEDmgFSnQiqnwoGnUJYgc0YqUaMWVTq2hMAYlRw5oRQq04gqn1nM0a4Obr5RnxZVNrcdo1gY3XSnOiiuaWo+drA1utlKaFTPNatRpiBzNipRmxUyzGvURIkezIqVZMdOsRlmCyNGsSGlWzDSrUZYgcjQrUpoVc2ZWoyxB5GhWpDQrJpplGhUFIkezIqVZMWdmNSoKRI5mRUqzYs7MalQUiBzOihRnxZSZZRrVACLHsyLlWTEVHTSNLPzIAa1IgVZMQKtvZOFHDmhFCrRiSs3qG1n4kSNakRKtmFKz+kYWfuSQVqRIK6bUrL6RhR85phUp04qJafWNLPzIMa1ImVZMqVl9Iws/clArUqgVU2rWklXFOXwc1IoUasWUmtU3MvkjR7UipVoxUa2+kckfOaoVKdWKiWr1jUz+yFGtSKlW7POEbcx6jmpFSrViqjrYNxLXI4e1IsVaMeVm9Y3E9chxrUi5Vkxcq28knUeOa0XKtWLiWn0j6TxyXCtSrhUT1+obSeeR41qRcq2YuFbfSAiOHNeKlGvFxLX6RkJw5LhWpFwrJq7VNxKCI8e1IuVaMWVn9Y1c3siBrUjBVkxgq2/k8kYObEUKtmJKz+obCZaRI1uRkq2YyFbfSLCMHNmKlGzFRLb6RoJl5MhWpGQrJrLVN/IaI0e2IiVbMZUd7Bt5jZFDW5GirZgStPpGTmLk2FakbCsmttU3chIjx7YiZVsxsa2+kZMYObYVKduKiW31jXzCyLGtSNlWTGyrb6TxRY5tRcq24sqpXM9LVSOHtiJFWzGhrb6RChg5tBUp2ooJbfWNFLzIoa1I0VZMaKtvpOBFDm1FirZiQlt9IwUvcmgrUrQVE9rqGyl4kUNbkaKtmNBW38gkihzaihRtxYS2+kYSUOTQVqRoKya01TeSgCKHtiJFWzGhrb6R9RI5tBUp2ooJbfWNTJHIoa1I0VZMKVp9I8sjcmwrUrYVE9vqGxkJkWNbkbKtmNhW38hIiBzbipRtxZSi1TcyEiIHtyKFWzHBrb6hwI8c3IoUbsXUX6tvqMUjR7cipVsx0a2+oRaPHN2KlG7FnKXVUItHjm5FSrdiytPqGwrryOGtSPFWTHirbyisI4e3IsVbMeGtvqFKjhzfipRvxVR7sG+okiMHuCIFXDGlavUNVXLkCFekhCsmwtU3VMmRI1yREq6YcrX6hio5cogrUsQVE+LqG6rkyCGuSBFXjGnGNlTJkWNckTKumBhX31AlRw5yRQq5YoJcfUPpGTnIFSnkiqnFVt8Qz0WOckVKuWKiXH1DvxM5yhUp5YopYatv6Hcih7kiwVx9lzBXz+t38tfYSP3HYiTNWF7wkr/eGVHUSJqxvOAlf70zoqmRNGN5wUv+emfEUCNpxvKCl/z1zkhPjaQZywte8tc7I5YaSTOWF7zkr3dGHDWSZiwveMlf74x4aiTNWF6skr/eGQnUSJqxfNH4/PXOCJ2xiXb1vNAkf02NKDpjE+3qeZFI/npnhM7YRLt6XpuRv94ZoTM20a6elxHkr3dG6IxNtKvnqXn+emeEztiVXMXYL9rxvlfUBjdhFZ2wCXb1PGjOX++M0AmbYFfP88z89c4InbAqT9jGrGdgV/3HYiRNWJ5n5q93RuiETbCr53lm/poa0XTCJtjV8zwzf70zQidsSt/qeZ6Zv94ZoRM2pW/1PM/MX++M0Amb0rd6nmfmr3dG6IRN6Vs9zzPz1zsjdMYm4NXzPDN/vTNCZ2wCXj3PM/PXOyN0xibg1fM8M3+9M0JnbAJePc/v8tc7I3TGJuDV8/wuf02NGDpjE/DqeX6Xv94ZoTM2Aa+e53f5650ROmMT8Op5fpe/3hmhMzYBr57nd/nrnRE6YxPw6jSLm/PXOyN0xmbgxUPA/PXOCJ2xGXjxEDB/vTNCZ2wGXjwEzF/vjNAZm4EXDwHz1zsjdMYm4GV5CJi/pkZ6OmMT8LI8BMxf74zQGZv6bFkeAuavd0bojE3Ey/IQMH+9M0JnbCJeloeA+eudETpjE/GyPATMX++M0BmbiJflAV7+emeEzthEvCwP8PLXOyN0xibiZXmAl7/eGaEzNhEvywO8/PXOCJ2xiXhZHuDlr6kRS2dsIl6WB3j5650ROmMT8bI8wMtf74zQGZuIl+UBXv56Z4TO2ES8LA/w8tc7I3TGJuJleYCXv94ZoTM2ES/LA7z89c4InbGJeFke4OWvd0bojE3Ey/IAL3+9M0JnbCJelgd4+eudETpjE/GyPMDLX1Mjjs7YlV55xdZlyd/ubNAJm4CX5SFg/npnhE7YBLwsDwHz1zsjdMIm4GV5CJi/3hmhEzYBL8tDwPz1zgidsAl4WR4C5q93RuiETclcloeA+eudETphE/GyPATMX++M0AmbiJflIWD+emeETlifJ2xj1jPEq/5jMZKWWB7g5a93RtIf/9//+mu8/himx3D+f67n4ddf//1//s9fh+P1/Nd//c9fhzH9aem+vI7113//z1/GuL/++3/+73/9ZWyfPwSVPvRd/ou1Jn9w64f/+1/lctKfy3Ws3y0Xdjgd50c95FI1A4bsQy+0crs+juN1OB/GK7Zmamv2S9ZmbKmvLTmZpeE/6Hbq6mp09PkudvlD73X+EPJfrMp/sabcV9/JRn5/4JH7euRQRg5lZFNGDmXkMqApj9Yr6cgDHtrWQ8cydCxD92XoWIYuIxpbhtayoT+O8+H78Bs/t2r4PgrvXjY0H46XC7bmamvCO7JZu5Jr87U14Y8cL+N3dIcXITmYsUY4NfGLonX1w0zX5aekuvKU8qPoY5kXqjwcUyarF77y4zS8D7/wLzD1LwhCO/Ph+sTPR2tf/wxVfkZZp7wrP6PMMeXKzyjTzwvXnP1jqN4x2wtn2oW8p6G+fl2uvywMviwVsdx9Ve5+r8r1C1e5C31PYz20KUOXlcGXtSKWO6bKWtGXVcoL596VrIumq4cuu0tZB3pf1ooI62J5WD2si144NPP62Pq5CZ/+lbw/RtU/wZafUF6bUF6ksvZa3ZWfAKuccN5fuRfI1b9B+hj2t8LXZqS39IbncF8vJWV1MLbck1Amc7lLtvgT1klvPnMDQn3l0js5j5/j5ThhS7G2FGWWbhO+BfUyZMp2a4sDFcpL1ZV3qdwd64Rv7/4OxOolsla4/HA3IKrakGyPO9YWXL1LLurE9d8op2S/7fhtrK2tbSi3u2nLq2ScLouUK+v62oVSOMZlfIzDjEeK1T609oCU2Zof0/H0GM7H0+n2vKK3walqdQnCXWFn8XS7zo/peXrcpuP0ji5aq9qpFDrMZYDxhlYxVU39cnNtzO/rUm7lq8bn8f16fDwntMq4erdXXSecYdnq9+H3ZZhn7lbXO9hSqeUrZj+fl8dIfEdXH39ClLk3xeD9+e0ynojFpXX2NsHKrI3FD186GXxpEP7+2uoFjlp4H06n4f54/L4jU2t7o2olgzOLdcU38UY45fYPTFWrpM7uiy7njSVLKc+7bpuB+Y7pPsi85TzqoZqTh+Wmjdf3w/n4OB7mI/bA1lTV7RdHJb59aZzzeRpmvKooX/sGtvvalU/DvLz165Xfp9tpmGe82djae1qaiH3F+mM6Xud8XxrWVW1duCIm641Vpkcn6X9p8HNZA97JvK/WlSh0gopl5rnVG6q2eQ7qslNrm19aHcpfygk2FId4KfWUJnM5SC0Zb+lDcQaWxiPlU9naFBz8lS9esIrlqKJi8R90V85lWpdt1sCp3hjhSQrfg/F6f+JXQtVbjDHC4Eex+nx8DNfHeDo+8Mxyvnr9Y/jSvEVGG9PM1cfiGGWOHGd/OGu7nDiQbV9vYerf35F13+FGqGef6qT7QmsEurPVPp7qvviu1Navtz8+59jXY7l//0vm8fp+GXY/xdbmhad3zvyP4zQe8Q615GttvrAw3pNtL9sLeY169Bp9acaP5+U6H/inB3Rnv7axjNe3G/YjXe1HfmnlYH0dF119deFLL+A8/Oc5XE/D9fn5bSDTqX71FISqbADfJH5pDixDsSPFeoHSfRD6f9kq55kppdDZWBiOzCafj/GCdqglEXebnV58g5+fz8sy4Q/T7fZYopMf+CJNHQnqSxTW9H3ZYqwun5bOUeVMW55EsNKJ+Bh/oPvT18F/Z4Q/6HyuXuPxdn17XtfNoPJt0CB1qER4pefzeXwfH8fLcZ6Hx3263Yfp8bsxAH4rVfFdrfjn1GMtHvn5TwOiFRCcZekJ6HweF4vHyzJnh2nGay52ieo1QhitYVyrpfzR5lT2eeKEEtVTocRFtC4OjtGAn3T5B0b3PXwqTo+2ZR0wClwimLnOwywtAc21TFv+FIFsSf2F9OMO59vncbwe5uE+THQD9H29leeImNTyeP1xvIznaTjOZBrrOt4Thev1eA/d4T4Nb+MvHPsItUegu3IK06oXviKXd/wOVGuICkr4my/3j+PhXaFwVF8DQWF4bDWE7YSufktcJ1zNP+mhVTt0miuTTRp4We0dfihssj5kW+GjzJY0tlR76tIVB5POeg0uZ5ylsKzU1vpv60WjQwFhJd2dr/Pj9n24zo/j9XyczmQfRQFWqWN2/b3f5ZVC4UUjxHDH62/W6/FdqN0TJf2xmzXODa0jW66TPoqdzcdtfkzjFb2payWOKuAhDVFef0/Hn40NSak6kmiMNHRGbY7r0z/RkFSHbIvvMOuSeaXr52XETx+scc/LVLfUyedA9dPvx9+X2/HcuAMK3QHhmngfD8M04b1pSTjbrlT6kt9HGijUKHQsfd73x23GD6OODKv+C2YO38Z73++xyFo1ro7nCZeK1ebphinfWj2uNiacLauxtyMxpZCpr/zWj+N0Hha1C/Nz66jHWjZObPZ4H3fzw9cHFqWdMFBQm7vdHwRYhHqqfOEWMvNuSY/f5q801r0YW55tYiqPI10QLVoQvzBjTrfr24is6a52mUvEX6kC2JUuqh+d1U6LDwuMSxe9hcmKqjXiLn3hH7f59u3v4YQxSbV1CrUCq6VpOZLPRK5Qh0jBeTZFIrDWS/rCAPP9dp2JKqF2SyMcBqR74GJ3OUWN13cSlK+1WCaD2D/bI/DN+9qp7IuGRIujHdP7+gf8gpjaISlgxOhyU035Sx8Bwljhez7Pw/R4G6/j/DEgl8rXRzJlvmDvcdhtBq72KNwWF0gfeunDA+M7f7l+QaUBxcoa8Zlr99QJJ+z8+3paiMnt7fA2PE4fh7fjeMG3dEm+3NYm6Wl5Mfyf5/DEaKPaw6RxHjB0WhyIy2U471f3aimQRvye6De6Gj6FAgUVyAeVl0L/5/lCogS+VmIoK93Kno+PRW13IEgOH3dNV58qtfChozATVRoqpZBaVnxDudgV3jBr8WYoy0DRgoWigVq6z/+LIekBxtQLgdiVoybn08fwSd3W+v700s26xRVivWJpLWVdtbldiL5DoU9xyO75+KDB75qbh6KKDmVjjEWRGItsT3URIoUK5AAlvrXUfCuvlgU0WDwHFUuMVi1FnnLgRnjx31CQpJ5qygm51rfjPLj+OV3Ow+l2Hogz5ZAzJZtOYPFx+/b7QVQ6S53E2qRsXVhMvsIVSiEJbK9l28q34+OEw+cWqRpkK8tqpTr9zW+FdnGyifrMposAVCnhRvjthMM9dcDCC8U4307zKqMYzodGCGDJQKvMCm/DaT78GIefB24ZXNLRKovCiXSauSlU+62qh12rLKQlIByKOD0U4UssYD4WfVS0Be2XVy8WHYDqisRRdUXuqTp4VzsLfyu+vepKVFp1m+4K4uIK/i1kDygQNyujYSMo68xS5rF8Aj1NX2LlS6WY8gnWEtDhKwsowRbfU0GCh8r5AMunAJ/KEUA5WMNcidYrZ8t/58BRcCXzQLkA/7a4+coXDqCyrmVd9cC1gNECCKiCLpaDgacJvzKU6L+ClVht4qto4G92W0+LygOepe40yC/K1NGdBdcfVuAuwLcRVuVyX7Qq16dV8ZC18hB2B4mHKvuC1uUJaiAgWlv4tqiktY7wbVEba9Bxazg+aNPDt66Ma8BKr8vvBQKo+7If6b7MA907+FSejLaFemkghdqCXsaWJBPtyuKlHSi7HEhafFGCaw/3ypeZo+Hp6wDPAzZaHWCMCGNEGCMCVepAbd6VMQy8jaaDI63aJN3ljTKqzEmjQOKrgDQpUMgpUKeqAJQKxjAwbtYHy9a0DxL3qc/JCjxCC29IWcjKLw9lasQyM5aa7XlFK85JmfwxwkoFb2SnwXOB96aDN7wrM0p1HlbDEstYQriwopV/C3NVQbqDMuWSFCgPl5qzsKKV0YBML2WrYEUro/Vw9RaiLhbWE1CfKwtroA3wCdYiB6uwA5/NgS/mYAV3HtaxAP8WVhvfwTqmy+/18C88jBY6WLP0tivB04RfGWAVhi1KRfi30cDfQG62FN8sK1p5H7pyn3XXw9oGq1K3rYGb8AxWFtidtNqgYdG9aQVvM0xBrcrOpjWsRbqHT6C0gyiY1tsaWBLINKSHaBDQaeC82rgyLojqdF92Md0b+NTD2mZhbYPVEJLTNOyF2sIqbGHNt2XP1LDv6RxMX1e0MpqHPcTDvfKwfsLT1wGeR4CrCjBGhDEijBFhjYF9ygDENfA2mg5CaKqDVUnBOqZhHTOwjhUvxShYs5SHf1GuymgYw8C4GY/+eUUbHsfDO4rKmPp01wvjzosdbCbUxw/lOuFZYXwfsc+9tGyrVCNC53M1c7p93o/TON+uw687jm1WZ0QdhT9xtZl92gs9ayHpslCu/218fB7RhYVapa5gO9AdJNQFYbw02T5cBqxXqeNOKsKm3Umd+tXq45b0KuP1PJ6ImKFWxOhOGG/8dln+OQ6QBbStOlmMIRtafvb74wPbq8/XvTCl9tvldvpOzqoenVWFx6vFzuF4v0+3X4fb83F/Pg7z+A+J0tTs0uRTg9D08PY2rKKuQ/r/78f58LyODxJ6NygOJJS25hGuS4o3Vi4qVQtsTC/MgN0u8TJ+jovQ/ngiQfHFPUGWv3Kf97o6lNzZSxeRZGwY3z8we0FcE6KCfdk6jBOS/DRAng6vbgWacsJQYzL+GD+H+XH8vJP7gXSGWrhcLRaH63k/CwwiOloY/lrN3cfL7R2H3G2dB+KFYl1krYqMcGhLKcR5emEezTrE5/A40uClrSeEF0afkbU/XnCPHpgwd+Pb7YwDbV2tMDK6eDPGQF0CL32FbzeU/m3r1BJfXMoApw2zxQnAhw/CzOFlrF19DLRWCkVuqyGSL4pWRCW9r7fLcMTlLmriZLVwQiU7bTfF1I9LuvE/xwvmi9VcD9uJIT+EXhrEXcy2REd9h5QewqSGb8/pigS3DY0tErPDQVaICxdvjYbGYx3G1l05pBoH+TsO3GwnzLlZvcLHLTmJ1DtUSLsi1PqcMB5AGkrhhD8dL5dFc3r6GLAb09cc1wmRc6KZWKNSTS3Z8zgdH8P7bULrUkDgywvV06ePRfc7orke6owX3ZUDrXFCKclqc0dSlENeTviCLXx5vt53lNlWR6Ebefo4Xt9JQF31Cu1lZeL2cHrswUWBE7TxJVZqAogacgxPcBXD6TtOBl6V0jRHpv6xAfQ3dou+aIiWwFnWCFVi6zXcptNtraRUxBzkrUMyL+GeuRqen6cTzUk0SFoRhIVxVnONhS3WRxItrWlz+n6+T+MP8lOR9ExYOuF0GXD9AV+LHRQ4BWoLxnRCcf5qenksA5ffWWeLlniVUsK6VafLSJ60RxFYXS7W6EJujVT3kmzvpWS+jheoLTOihw1DekBNIywu398kq0B16CwlzSFJBj+G43mY5n0SuUUHPid9eotNRnW2hJmRA/mV28o6tp2tPQctzKHerdAGHfC8lR1oqMi0DjkA4VLSheP2+Tk+HsP5j768RSdbYSRicRJXMc2ZCW7E2sHQwEm0EkYBF+PPx9DOyPb1JqOMML7FaTLrFS/9s7JPlah3cb0isJD8JErCIdAfBRgCGIDf4GL5APAQgmlweyCObeFhQ1AVXm0tTL1PlUKOI9EULgtSrXITagWg7giTbh/qgIDywsycqpIJur5a0lAKBJUiT/l/y10tAf1yc8u9LWhAAa3ekPeWWF+eFahoALkAOQaHADYcQCFAMwCiFqkAnDbLvwIMEwspi2WmQNw+lvyhWMig6mCCdUC6OigR0PXwN/gFUARAwSFCVXmHoBwC4qwU6Io0UDKQ7yqozadAfKoM3EoDCgBgxcoA2eu3Ix14WL2BT0ChegcUL4BP1m1PCRQFQPYs/AsL41r4vQ60Cg4KJjiYBw6uwIE9BwzNAUNzMAcc/CKg0MpvokZQbngHfiQ8wQCqjwDqC/BvVSiPXAX4twFGizBahOcWNw8Vxo3AV+OmMtimqYLlBuqqdMCtgHTrDqhbtwX5HVDBzeECmg78SCtYt2AB1ArsKSiToUDfDm+YhldMb+uhBqWALqcHrYFvbdU2wLPSIIXUoIbRULFQg15ag4pOG+CSoJ7UBmgkqGZ0D1fVF16rYWZrINAagq26BwbZA0Ht4Z72MG7v4VNRzWiY9xpOJdqWWaIt/EoHO6oDagm0WfsOOCJci4dxPWhCPPxe0MroAFcaSha9hnIjOsJoEbzaDgoEwtpkujKaAe2SUVshwTJfjNLAICGnV/VAFC0wSMjVVcKqXkvh1uG6r2LU1b6+0VteMJQjtUAvvTA/txz61jTMt+n2+fH8PF6n4Xg+frsMj9vtuh69yQmpvo4oLNK2GymbftzQkGQklNQnrOL2+iCLsmKEmfPZIpN22aNSCFF66k/2cnbc4zZer8OU/x8xj0Si0uDS7Y6iB7Z+YF4Y+9wJNrXBCbAyK9NwxBU6PSoJYzeRD5xePezr3m77kvDZr+Nl53uZZcv5/vhYyq3QrJeliEv9PgnzkdIIe9zs6mqJAby4CJt2hB8Y/bbFCSfgOujpdrkM62Hodl/1tejn1LhbqiOndlthY1QnCE5zwmSQNEiuDiR9NGipE9bQQANBmR3piPVSo4UK7zRiyk7jim/1KCs7Ss/Sq9VpmG/P6TTwdhEkEErukt0v3xiLboxwX1mHWlPf2etH2c9RerRejT7nYToP0/hjOL+48Si5OAqrEawDLEkxXIK9R+UNhCKP1eJt4irq6Vgn73TCK3xO07CkA60ZtMu/xglBdXKKFG0yNg/H9/dpeCdLt6lzC3ppZDRb3xaZw+3nUqDlY7wffuhVKY9zmupBtHBm7waZSX6cqfdAKaUuZt+e1/fx22U4pPS7b8fLgm9IKlZdD7B41FIVRxkoTWhsuM5N66UORra3voBricjd/agjpL00XozMwmPc2a4VXHCCBul+L92c0mjrtFxnJUzKFfZSvlvvGMKUnz+OsPzPjpbXLpkw/Us0EK2+jPQFwp3jT+PsvboeVUX8lz+HeyA9qhP3L69/Hpb3+XS7PD/xIaRySP73lqXzABKd0z/DW04Nlf9/+LXCKfPykmra/7V3bp8LGDtUWklYJD/bKwvoun6W5ZObNIgOf22x44rsoSo2Qtns6TmR6rGqc+idl54aV0P34/t4Xb0KxrVyyKx0Js+P2yc639XOjjRVeV/YsQaWICwq2D/CUUxDCLOuZACxfiiqp6GU4dYvBXofGAhSGkhyMQHsRSiIGIVP7Tycxs/jhXhY9Z7fyfyVlP153nVgqW1ZocNdbP04XrAsz9TaCit0f7O1xxIm2T89i4SNQqR+Ht6OT1w62tZCKS/UH2Y7h8/jr1WLui84plB3FBOlszQbfvy6HoZf98M8nA7LgeVwvf0k5lGoSOgA1OYXeedt0RIPJ2IZhYyEnDZb/jz+ej/O3O1AUhMvrHyXrT5+LfK2cfo9D6flbuxuBvIdvFBocB4u6/5yPsyP4/eltvha23LXYMDUQaleqM9djD/akxdpSIVaxvNwYRIuajfcfcEQzbioQx6uk87W+zTepvEx/jOc1xdhmB/jJzlGKYXqL1nxq7ArqFEfSYWFXdeT8/IQXvZ78AapV8SrQMv2rt1DXXHGCOv3pEM/G7VAtms/BaihEOzmMZ5Ya9bX75MTCityjIJTANSCW6XFr+dqb6lKQV4epGcO0vdxsUarB/SoUUIUFl8AW42WFkhWB1lXSgnzoZJ5FOtZnv777iHVUiih0KBhe19vqq8XFveVF2JvfR5IiZ26Q4cTnsGy7Z9XeMmS7TWbCL0PdX4WVO4SL43LKBCKbIpa+ro6phMmwyTj+xorfT1fnDAElIxVAewdP+tRsawoFIWdh3mYxuNl/GeHpzqHBFdCOoMNnha9NlHIIhGqeF0vVvE11ilWapMNlLZdoEIpbjsUDYiF7EbQLnYgSugA5ncAa6B4gOogBbkL8LLDv9jOFtAkTUFiv4Jyx4sOrXyCQgYgElQQYlOQBqsgDVZBGqzqHfwNZBFwClnaVJdP8DvsVv9pE9qCLMKBvMPBFUCSrHJwSnIO7jX0w3BQHMeD0MOrDXtBwYhNxAMCmAB3KMB9gQ4dKjiQaEDpjQj/FpLjFUh2VIRfGaFYQgfigA7SoTuA+ZB+q+H5akiG16qcADWkxWsQl2lIxNWQiKsVJGQrSG5WkBitAddrCwIJSL6GFBgN5UK0AdmGAZmFAWGBAbGGAUEUqHI1tH7VPUgvoFiR7kF+AjFM3ffbJyg2AeP28Nug46CGtH0NhUi0BdEJJPBrCynrFhLVQSKkHTwjSOXXDgp4OCiGAXIgDfkX2oNEA0qSaBCOaw8FMgC7ag/P3IOkwoPABEqd6wBlNgJcQQDxTIDnFuB3wJzUEaxE+B0RrET4HRHySEAiZCD538CKZKA0jelAhNE5+BtEG1TVWHNrUbl1jNwaOG59EEHo4cAKxDEUFLmE7jpG2vq3Wr1pNpivHQ8lra5RG6R1g3ztbihpdntlcSm7fmbMOmRW6oBtZhf35TSN94Z0Q6MTvlD7Wdkfl8IA6II9umCpT1cZdNgeykj5sn8xjMtShwyiU9i/+MUGHWq9RSX8hVlftb2ls3ptDymZhRCptoefR51RqYxQXVCZS6oIbBLVAxUfAonJ+YFzOyx6JcXHGLDKl27rUWXB+PXHQ/o1oLspjFlX1vjeLz2qLxe//sx39xItRuJjCdh70rfaomVImEuCDOKX0KJVQpj2Udujb7VFy4SwFXptkL7VaJUQ5kDU9shb7dAqIY4kb/bw83BokRC2167NXYZvSofjTH+3QxNc2DKrMvxjoPp979ByIY5Lgcmf4+Pj9nzss0pCnbigpAl05+FxJN2SAoodefGe8OM64DB/HRbw0nB5lWGML6pK9oFmG0Jh6HmchtPj5zQ+BmJ2SUxGR2Hh8xjnNQi567bYaqVUt4sWTs9xfozXE9FH4vSr4gxCIx/hi7T24EGGq/jNX8X3L0ahwJGwf0Ju8bPig6R1Ysta6B5F5EHCLKzvk0dZXofD/Hx7G39h4yhiKZzCq8ntutnLrgM8X7A6D/fjruFRqIG3slvxLmEVjWR6uQX7O1BDCpmx6YZ+qK2V0V6YkokTn5AzGIT6AKbHI5JU23IIgvx/V47RzsCH/Eq4ctr35djlS8IAVEj0wg0cy0vxoo48DGF/+r1cldQqRA1nrFCenK3y4MI75GkIe0oUk2wbn7re15LZ/BWLfKMZtI/1QhRSWRymF13AVedrMqaFh11kfnlUCUSlBjSPD2YUJPwWHvyGzztOyreurq0j9D+G69f2pvrdEs6x654TVtNAGJEYrvNzGpjqLMtDRycAqb3H9BsqIh/GBTJjTIGgqHCNXa2yZZZRr4GSWrgFVqG2g+6hJmIvPCOhQY/fRuKyoPpNwg4a2CQX/ehQ5qsWHg5ZuwsYocgBVUsTNvRExvfhII/0RMI6NshmzojhM7+RLF1a8GG4L6xpOl7W3gr34zglT4i2vKh5nDBosJmGhfPwY5jGt9JogWutUUMzYRgBxjkN0yNZx+96QFXB7QYVhFORsc81B6u9Zif0bcH29+H3cvORWK9u0R4gCb0HsmEhlVR6XIHh+M0RFUPqocytl07/nXX2NtU974Syc7DMb8EBI70I1/3Fd+Bl77faO3RCFftw/374uE3jP7elhygu0K9MQIEjqb95v5HGBMqiAkIl59M4YZOm4T9PIhN09eoXN24ndW5oPxqlkLrFluRb46WLYBYNvR/npe7kfRpJ6zws2nbSe5nNNjVpWLLthCl+xWwlfXpx4ajnkVA9P/ygu6Fy6HgqPJWudrIN5HnU7qCw5GCy1Wg9jeR3UDjA9FBDC7ifgdR7EyAFOQiVBOs1UBmMUsiHtsJeGKstIvOrlq6+oDkDNfNNv/Uq3y4d6sAHYbJbGnhpQrWUicJvkq2TOrxQGDP8Gk7PBxVrxNrn19LCn8nWkveD17I6J8d46QEiGauL2sz4EuvyIdJoV7K6NF1a+6Gh2xfqAwrUpZSSFWJ5fVB76aZHvXqFau3h1z1vFLt9okMvjxKGs7e4EHqzUXHCrdx3FK7sW5BsfhwfT3qh9TlICRW8fwy84e1tg8vSObY3v9uLQ0SFpeGF9lBSIEg9FRhuf4P6mg46Yc7XH+J79WlYbo943ahkmlC+nOzwFYA1AtMgFTJWGJJNUu7zkppLHpSv26Cq3m2untDX+XW/LVWuyoGKFFNCinwnftMew3Q9Xg6NTry1vyvEHMOvx3Q87CtcxVrfrKVJm6u1t3HAlVtVh3wmJcRa6dC27E7LnZwOTJl2pVAht164eS+Wn9PQWlXRlBKWbHg7Pk+EoKA+3kWk46Ag0lZJCpq6GmmiTBqNK/CHWu/BqgvKKmOlIyzNHpeEhCwtRhOt3oLdvzTIRYvrPVNZJVseGobZsHG9hgkLvVLz/Hk2Il4hfPfehuFwP/7G2oFoUS0J4UEITHHZ7j7Wp20LXq/01LoZ3yucFUpmNtLV8W0Ydr/c1mElL4T9xRDzswOC1BEqr+kicDO66GyNFjaBh+FaPSVVrN0eYfyqWL1NrP3bdB3GxweRltctMIywpWsxz4tgMEV1QmRRbE7Hn41Auo8oP1cYbCt2W+0B69QwL9zu10a7L2PIParAGcUP8HH6aJtEBUPEP/9x+vj7Jyp37ep9NICi2W7q5dKgzEShmmcd5vN2fi6ZQ+S60UkrCmFgNvhjaN4Og8qDiN/zx+ljqVfRNovSZ4TSntVXIa5ZRJEYYej2bbw8yAuKFkYQt0KDJOEx+G28nt/GaX5cb9e0/B4n0m0elV+IQl/ybZyGpaPpYW13PM7z4X58LO4liRwi4CQMS63Xu0TgZ1phXxl8xBK+C7zoNaLuzkK4/Ha5HUljptorEBZ7eLvcbtPj9vPjdhk+bk9SmAw1dYhSd/d2udx+znsNiq33MWmV1Lfb9Hl88LA71NVvdFdiZFoJKefL1rL13dTCSnhv5A66WvcnTRZ6m4bhn2HfiOGtuYUgdxNKbirpQjeNAy5PYuvkXC+sAJ/M0NMhWoKkE2jCpQlcfYSLUnd3un3u3jTUghkyI1QPn2zZd5TfyjAKs6f2ogH0I+oTDfSyg2wFZWBkA6Vc+y0fBjJKtHRDmG6fbT1LrHX2WkuX2sXmclqnaXEB9VHwUs9gScCcbo8P5WrI+X34zdHaUNfUV2Knjjs91Vo96LULdVCV+GiZbI/X+xMrGRXK+xYmMmZr82Mar+/YXEDm5D/875+P4/V8H+53IuuuPQNlt2LdX5jpi2eUJDhYEFZbDsIU1zUPe5g+x3nZZ4fz/nTm6vAYJAUpI6wk1070drVePpTcnAgVJY30CIwL4F25lG1Xy96h+HGEpEEjrIa2jsWe3g1SqQkLDiBzx+t5n0vrDZLDSyNJtd15Mbw+VtKeEB1thTH1lOSzXOXxyrhTqBq7EeoaV5tYTRRQbk9QwpN1MjTiF8N5JG+Wv2f79cDVcb0olGJtprhrs7VB4ax5Xi6HK+n7YOujgrR8MFjK0dvD5Xb7/rwzceE6UuCk50Kw/vfP7/ML26G2LXzpwfaNRjX6WrnkpGdDsIdEP4vMqHndtVLHSX2D5+VCH11fvzUOesdrD+BZ6gdm41xQF5WsKCnDpofUSXGolFHrLaUgEM8vB1ULwTG3dYSExktB/Kyz6nAdAWnUkARIyIKa0r/amrHie47VecQLR4VeoaO3cVBwy0Edcrd1nxJP2jQ27ULpalcAcnGVtLPt2/PKFZVRdWc7aNKslPxi6yKcjdpEdfUXaT8+YplrS2nqI4BUzEjsNiQOtZBf6m/W5fTwHKzFf1vJBaGyFdndbjBXqK9ec42w5gwyX+4yZ7wmGb1w0r2rnTehkPctLCL9rvd2NGJCsh/7fvz8PB6O306Hd4VmUi2Bkra6SsZoqau6UK7wJVoNHb+d8DUFhAmd0ElcbdGyWREZku3zLwplKbSiSq9rPrxkUbr2XI0wuFq6QB92qrZQoy3dlfiA8Ro2KmH503WMmbYsRuC6h4wvkPYaC6Ir7zYFR4nCB2EWxftxzg9htzujJs1W6Ey3RYAoz9lCv0IrlPG9D0sA+oJtonm34W3h2rFaxJPP1WkOoVSSgC4iykAXGwMQBBC36qHkhYImS1BLU2thNK1cF7eZKqTesEINKLFYJaAwvbFcve4FKO9jhCFaOtY+DQdVlhceCojVJb+OSUpTCoUvrRAaMMZTlDmff4fTXVv3XVFqqVCNSCtsQVpGw7E+5j6h6rPCgwIxTqv+M6MENMrX3pzr8KvVczjW90b3QjhfDLeJrupRv+n4xSten2i7CzNqdhKFyV1N2yut+Hxe9msrOruZKEw5rwcar+/Mu7v0K0OGv7K2UsPL5beKoPUI2Edh7c7mOM0HgkhmFIK2bZg/zn6UvP3Fu1VdNNvFB9V6jUKdRNv4sizt0DOSzUahR17GWHpqVOPsFO2otqKJwmzXYr1G5vz9QaxSSIleWOdvEFothGG8dZARFQR2tY8b9BduxXg6LPTlsCSbf5ITBkpocCDJdcJkpMX+POLOwHV4SZr9le1wT0mhBB4ppM4G/9jIteagxgqrd76T0y+qQmmk8dWlsTIqbDnMb7cpl8D/z3PADdZNXRagFz/+F0M0bgjyuYXJTdU498c+w6cOYkDjVyV2KIrtpdcvY7zuwA3BHSGexMbnfZuK2oeAsIbYjUbGaWwHVTSC1qNid2Jnm5kydfBI/2vD/ESJKN1H2Liqtg4tc9bqNUtB2bW/S2M0dCIXBtgEo5Hy0NUgcJgTO2F/Hox5RHVURry2lZFyGRHMU+qYPPyGf2l557DUy4O0c8RmlQZ8keBwu1ipF1TMJg0fDuVVhqFxr9hJxIZJw6U6KgKWxRsHtnwn7jPSB4IqR+y5FetX2qDLokrPxa7YW0N2d3MCSaqEaQibzfX14BpQ1Y4l1I8Wu4DI/P5VR7pB2JLELiBjfcGl25vPhP+QMg42KrFD+MchmcWlbpggVNMLBmqs0KhPnbC9PDsa80PqlFChQqRtunH9KK4lRC3bIKVWObpu5PrDE//qG1JM49lUR+HBexCSeMb2biWq5w7sheGrt2XxN1nhiUG92sD+Vyfp/PzGbYJ1gQtYpIUp1pzx/ZpXu7TCUrab4TQZd95mHdLot1X6q/O9leiLWu/BXRGf9Djzu59QhxwgZq2EyTbLGNe161jjFUWxVaGQazX6m52Drr7hYRPzgafvoe62LrumkRaOW8ZdmqhxygmFypgYqYCmmEzyvHmYflDG0aP6efELr+tid1pavcwPrsuviijSLJS4LYa3bJ4lIMmoMOpL/oL3UGcJvYhzopp/Ub6+5G5x6ELrxqngkYgDy49vl9vp+7ffH8P4/kG6MtX4fFuwotg3yKa5tIPapVRueyXFd3ptl06KPRgkrN3uhXge5x7sdxIBpPUO6lHASxPzuuYoew+jFjD0QjnEiwEa6xeKZAmlm8so4HrRGEJ9HFPd9hzE0xyb/vZ7+//4iaPu6d32KMTrwG6g1KGY8ZNRPik0ypBWIvjjUMfrefsPqDKrdmKhtYTSnXiPxGMz86xeQ4RpUDuzjdlVbylWKhepbZNHXr99QJi1sLDLYjg1yKzTUqB3Lxqo1vhBXxLdiRfWV90+8T1CNaFBsCiV+rweiXnYdb1VqRbj9SCNR4+i2PKwTB5pdUfh0TC/ow5SCSW6LeuNH4CizkLZ2Pvw+EO7Q4/aEGm5OyRreOiRQEtaoHc1n1se5o6HvKhQocYOpf2J0sJiNy/HYR5yfaCUitZeDcE+ad2hsLFYKINWkTwG7hNc5zGo7dUWv3X1AHSbRUUEoKuRlgrWhhJO5Q+rtYragm35ZCK292fVmpAIMwrfh8cqHGcRP6oVFOXH6lRzi5l6dSxAfrxK5hrTDAVS5ccKvqCTRUp/eETiH75x4okIrVG1IhPlZ/2GZhYvq6hTwTZt/7eD7J+gRqEF8UvdsN94pCjAKCzzRgfhRNZKofYL5filhZkFrSG+/U6ZuLQfoEJdXOCFF+r226O1PWqFmsRDMF0LEyJbQzLToPZu5SFg1npjEqAorVRiOjzej/OqCG1ITevyUVpBy3ElnsnJUB1bqjdv6CuuIsSBpcUKivFhuhznx/w8LWJ+9qBfzyu3/Qbx2jfO8/F5Pl7Pz/H8gwhde4t0PvKg4d8/v3/H54pQi3qUl5/mcxWifZaQQrXVTJSHG7PJJc+LGETSIHmM5zKc34eJck6FsiyhnpoWtmB+Hx70oIrqnXmwJ76XK8ljXuD6xCIPsF6fn9+G6faWncHbRO5mHaWI29X+L+wvMpbL5X674Zq6qEqvittLIN6q90Mxd6lmI/KD9t50Y41DYW45XEgQNW0GqPkvWpfq2pzb/RG7BNsgzH2p+YX8EEdMNm4Kij8Lu/wtxt/eSLJSrN1N/YUww8oR62MCKaNanxHAiRDWGi7mExlq3AIUPhRWf82GObegbri17RdyadmCDFeBy7e357zUaz+fnhPJM1sqwaOVVLyj7msQoPrGapu8Ytn7khTyeZx+08W0bhW2Lc5ywRRk2DHlWlEevIcomhbvysT4/q0zCLn9W7uNKYdiivKz43263d6IXhtt+nAfxDtgo5h+vbH2cpnTC9SlOxRNE7Y622w+J9xIVeP0U/HKBXXyVy5Hy8m6elOtei6DFkBaeymP1JDz12uELnV6Q/XuQZsEkDBKs0nXgQu0Y1sOBNSDNshX6rUM9/gYPrFvUDN7YBhaLowBszstp6r9Rd1tt0f8tLFt5i2vtZzycw8223jJUfBVLsvdbLOnaouqPW9vvHjf2ttnbksdmpZ7BXvT/K1RKFopP7EtmR4D637V9cxgNxCWmF8ML/5BiX8yt6P2TOXLNbLauBMooCZfW1bTjWdXu4vCzkK1xcaFojCRXE5d4dtvv3eZKLWLoPX24OQzojbPHd/rmaGhUrIW1m7CI+ANrW4NpbcyHXL6WFt+fvscH6Tco0f6BS0NYo5MDwttUUKKNJQ4He8f/7nsptgSwUGzQegdpQpj2EWsq0lJ8UiyszpDSzGjx9IFZcCIKtRARFnpvWNroGG7KBwkpbbi2moGKb2ErR2y+X++I/4bUPzVSYNuuwYkde810wulCR/H6xlrx00NI62DfHZIGI9CqPRxnM7DdTgf9mdQZVDiURSeEunrEupwqLKACKELptYRGqhAN9W+1Cwz1mxFA6AzjN/KB5R6hkEYhFiub35Mj9u+Dn5vUY6UUH60GPxxvDwpGLVIPieUHX0MxzMpJqY6pA/TUCse1nijoe5PL3SNSPHAUJNV5YQnHq5K4BLgQ8uZ8KlkU48bVykQVTAQ7gnUYu4/fZ8G0nA2aKRsE7ZS2Mw/x+sjHKfpiNc2jTRtQmXFavXH8TKep+E4036XdYKEMOvtY/j1uB3n0zju76vq0UYWhVHuj8fjrvEERZFoaXRmJN3pbZ2F6oveOoAzAL1xVQDhcRCmnYx4p7R1MqQv1kIpAq0c1HUKIEIOwkyUkfS0t7WM1hdzodTsUg6KRwQQIwdhCsmI277bmuf4Yi2UKljKgTcfQBsahPkko+vxUHUT0WItwFHblepkKvTw2IR5JCOeFnW4HMrXBsjRdGX3UGF7asL8hfF0ux6eE8qGRvXFeyFfxdu8qaud2XJPTC/cocbzYfkPxsfy18NluL7jmruhdmuUF574xvNmFFmrjzhK2tdhPC/C5rcRO9lBo+hnBxVYhd7I+H69TcOh8uUPrDOvkBLIeOF5fbyebtM0nB6HhDkOt7fDvphyvXBboaJz+bf34Xom99bWxxpp/eBMUtE11ZkoDpYpHWDbFzqk2TZXxLAOUm6NN/pCCYy0gPt4fZ+Op+E+TOONNJeq0z6FEprxOuKinnWCSIAYLTQNVF54GF0Mr1U7cNXDDus8hW//9TpMuxqWAQFVLwwerE4FaoGxC1pphSLe0i2QNcyVg9AaxVGka2nT/jR83h679hVaoyCIML1kHaWUt/h8Xh7j8X0ZFJXC2ZcwQQ209Vfu2J/G2j2dDhVmk+o50Vi36TxMC/OvxmEpgEaRg38z1B9unEbp5laoMUAjzAtxuJ6GtOT+8RchriEkcXi8qijVH6dFff/0v/p1zdGYiYG8ZOHZH432yrxG+eTyjYs3zz4clFfuhAkHrRFyHZX970D55dKgkGAUdqnDGdxCeiMcrLHuobRuJ9T1r0N+Hn9/IwGuOpYuPPonU8tyNo/vzO1HvS2EOu6dTf5mow7HUp+QM926tQ4N8IX1cD5N433fbFCjEmTSop3JYuKGr99ZVIjMCeWVLfPsO4tqXzmhnCmNkDzvV5ePago56bm/aXz1o9AIqBur+8KrUr+Vl+f7yC3H9Ww0X5nodVkt5qagKSMUfrB22ZcIZc9KG7E3zTdeJBRxdEJCvBvk75m7P0iZ78RHN9IUqm52Ir4JDxJyUhpJ26WhxcWQI3bQayaMIY7XBwkWKY1UotKw4Xh94EiQ0igk54x0KXzgMI/SSBrlhIlVS0SUmEErhbDj8bjUKfq8H6dxvl1JIWxTvwe9NAaSYquHlDB1yH220SG19t6lfX+L2Y/h1+H0cZxIPKGaGq6IrKXUsJj+++fjAK1O13Zw19vjMD/v99v0IE2c6xLO0uZU9TjF+jScbu/X8R9qvu4RLWTXtfm/f35fzb/dnldiuQ4QCDlobXnGMY2+XuGdUHdV7O3Dbj2u2PG1y7sfz+fx+n5IbUqutGNvfZCTu7zY9D/DdKOhrPqGip3bbHYhwrhjR+r4jG9xfU+ERbFejLD0BGnMjToDTQiVykCscKtH0lJhojtYfJCS2D3SZwr11sXa4+dyiYekHnx1D+oooDgch8b44/NEmv0v3RRGSWTrWHoQu1iruVR9bPnHy5J6PJEQsK1dwyA+SzTYWqhrB+gOuoV4YfYDMsxpFFFSvfHCJIhsNjUke3Er6gZc4lPPanrJ/Hoc37G5urq79Mgzp64juMId7v4u3CrmQ0oSPayacGyvvonSFXg+rFFJ7I8gHYYTKpJXU08s2NSo6IwTpvUslpbMUGIKOUnScNR8eJtu/wxoPmuHDiGlLpAwJWqcD7lRBLKJomXyH3o90nmhNKoD4aRhvvmQxfF4UqAeENDxp3ALaWGMcSbcaU1iwzcAJVyJH89yJMI/36MjkDBNdJz3nQmG6yISxUt4rQySW6bPqN7X/8qkNf+vcFeYubopuCZZVzpB2FLoQtvSoULb0jtCuyJ00XmfXj4Vfbf2RSatfUkb1b4kqWtfcrk0wGkNDRE1NOnWEcaIMEaELmFdGcN00Dykk/K8+duJuxeqt6juk7Agzmpu6QyEbTmU7y4NLi+2+O7NCnk0JkrjyYtFquxQfS0c7TvxG7nacsSUQaaky9Biih62e9cjW9I3erFFztu9s8iUdEVbTJEjd+9Q2USp17SaorfdI0vS1eDbaebUQnVaXt9J/YzF2nM/ISKy9YWp/6QTol5M+05Y8CCZ2k0Ij7prCYsQJFt0Qng05aUkeTVFJ4RHU14aJV5Nkdvu0YQX5taP81q6bbiPl9v7c/hTvfreo1dBqkxIg5RUhz8Pgl4SYQL5uFs4Iyo8YkuXcQ19o7R1sDUVpZF2GrYmC1tTESNoD8pWb2BrcrA1lYxfDRomDV1zdYAxIowRYYwIzSW7DrYmUMB2Jcm676THlvnbk9Qi9GjJkJ5T5tNS+elCXJF6tkn5/mLpdh1Pxwt052EO7wo1Nu07KdeYT5fhSLLUfL2AKBOLpqT35ZEp8YaV06b3UnfVoTL9QZgGNM5MAydX//YIHbbAR1EdaCZhcqjOwt+ggE9X9ENKwWQzJUKpjSovg4GXATp7aQMT2kjFivMfnijaEoTZ8OM8fN5xlaV6+ZFKIpKVBNDwVQW0u4h93+F6up2HM9LDlDamZAC05QhF9jDAvle5QvHfvpNSuXkNitMEzuriAsyWfitDCwXqvJSdzG/DsLYfRMtwHSnQpoPZqGCWlTQAnXusrXPQwxyUbmVl9MYkDGirlcK7memFExG7tKXwpYZ8Bg0d6rUtXX01tCjWDn6mKzde+w72GAN7DNwEX5YuHTTsMRb+BmNEGCPCGBGkhB20z+0M7DHCXpzpRgh62qBQf98J09jH3ckiov6SFk6C1sBG7uB2xx5uMtxu6DsIgmXtFdxuA7fbwQ2F9TFouLUO/gZjRBgjwhgRZJUdJHF00LSyk0pv6Zko1tEUbcH7sHActnActtHCTYDbYeF2lCbK2kNrRt/D7XDwg+EFDVB9OsDBPcAYEcaIMEaERs2dgtsBeT+dVMSyO83FusCktvCmWPDBIE9KQxaShhbR2lm4H8HAXYD70cP98PCLOw13AX47eIsBxogwRoQxYhnDdNAmvOvhfkjBIz2Hxoh7n3RwE2BSwHJhITLiIDLiLNwO6NLpFdyOHm6Hhx9cRN46QAwnwMIWYIwIY0QYI5YxTKfgdvRwO6TocneC7up8RW1hKlt4ny28zxbccQfuuIP4kAsQR1JwP3q4Hx5+MUSyAvhKAVaeAGNEGCPCGLGMYToQW3c93A8pYaWH/64uL6gtzGQL77OF99nCzuFg53BwJnEBzi7gEkIii/YefjCcngLscQFWngBjRBgjwhgxQFhNwe3o4XZIYfA8XqfhOvxcoqJ7BbrqkHhGWiZ4sTo/aKV1j/qJq607FnSK6CHxBjYh5cuUV7Djauj3rqX93sc5FwVLwlOytaLjt7CIyzhflnIASaRL7KGTtjA1cJw3wTR29DRy9MqsNApcOdi6DWycBl5XI80hqsZvuXropKulJ4XVLnsqq4udQFISHNRVB3kb4FipzsLfoGZnF7azGJy7FNwA2NQNbKkGXmQjFeujn9G6QeiILRVZJcu0i0V9jIoRfjSU3OggHw4cIgXtwhVENlQndvTLZexfkVA7+UoeK2dfDnRolQrl5lROjAQIalc2iOECc2jtatW+DsLu0eO8ZDCN1/dWn9k6Wq63JCSp2I0xz58NIjpySwWCuONIrnOEFmzUZUKLWSjDHOuMzrKw5zfwK1bHHRjtOtSnDDwvC+6nBfcTtGTawUnEWdi+AxwL4QwNKaHae9ig4WAaYOENsNxCUVAdYYwIY8QAoUcF2zcQ2E6quFruxY/jY6B1s+oIuuq3XvHisPV9uv14PSM0mhFSd4Av84UK9ytISOshJ7aHWo9wHlMeHEwlnuiLBvCyzB6yGHV18owOYl8Ccb9QJ9gpLz6ObQL6fUmAPqIYl7CS0DhDT3n+htc1oZQSx2rAamPbiyh8JqyeM86N6mB1DmAQY0HGr+s6hM7hOGLhUGbhUObgfO7gfA555toFiB3BsgUp3Np7WAYgnBLA6Qiw/EA9Nx1hjAhjxACxIwWLRA+LhFQpOEN3cuxNqNqbAC8BGoB04HlDZEF1Fv4GhSQ7sTcJ18F53BEFDaUJqNnmvKQNk2CoQT4yBD4VuHkQ0zAQUTDwZIyYtdRX0HobUKBOHOSdb7h8ZajFsypIde3zfB9OI67z7GrUHuUL1CLZPH0Mp+/324g6xDW8EHSMEjs5DDjv6sw8Hcpb2nfyu7CP8ncdApdwMLcQnbAQnXBwzHIQqHIQs3QBopxwyoA6C9oDBQsQWISiOzrAGBHGiDBGhDEiFCbqFCwMPSwMUj3vzMgVVVenJeogjpfsRAldhyL24DZZiHVYiHU4OJo5CHs5iIDm1vTrLYWb28PN9XD7IEoZIEAXwDWLMEaEMSKMESPETBXc3B5urlQevNNTdB0KqcMOYcF5tHCFDtYmB2EvBxFQB+IqD+IqD+IqDwKuAGHKAAG6ALtQhDEijBFhDMCfpoNqSF0P90OqYN5LQboOBdXhzbCwUVq4RAeBLweBLwcxUChQoqGAlfbAUT3IBgJ4uAFCdAHevghjRBgjwhgQbzAdFMnqLNwQaemanYql61BQHSazhfXBwhU6OEk4OEk4iIE6wE8e8JMH/OQhGBYgUBngzANtL3WEMSKMEWEMCCwYIOCms3A/xJyaCnC6DkXVYTJbeKUtXKEDp8mB0+QgCOqAD3ngQx7CXB4iPwFOfgHcO6hoqyOMEWGMCGOAQ2Qg4mSA/ht5AIVohzqFguowlS280RYucKvtBkWbtAP64oAPeeBDHoJZHhhUAB8XCj5pKPmhI4wRYYwIY8QIx1ANt8PC7RD7faRpYsNVQBFSaa7dvArwcQixMgQRcSXO3ksWl6r9f75kFPyUpvWlAb6N976/H3F21HK6RSal+89qskgkdk0p+ogCbMKiltlqKW64u1bboRBTL10efwynB6kd3ymEWWBts7DCW5iyDrZ7B9u9Ax7nABh6AIYe3HsPUDKArwfFyTRoM3SEMSKMEWGMGOEIpuEFsfCCCKPHf9/Ga8k9PLxPtyfKzET6Vam4/W+SkGPr2+qFGtjFyLfaiqmVUlYYnV2tnI7zY5dxWk9F4WaSjDWTWGvZSy9clJb8ybelrSuXvxVRvwTZvKYGt0RTbLrOcJP+/J/fGeW7Ry1MpW1A//6JK0HVwTtgrQrcduWFosAlc/R+nJaz8GFXxAlFg5xw7/z75yPV8UQrBULzEILwwuQX2pq+Pp7aEpEF5anpy0nF9JDE0IPyAvZYE+AUEYWC7iU9kfYL6+v1FBQGpi8HBdODcNULZ3kGnHgzQKHJbNuV04ODJ6+E+Vx5jJxWg8IVGrWCEEacsb2lGScps9rX7rS05BVqKfXcN/4LdZav8sJMVs4qW0O5rhHaC7NAsnGmJBqqDyhsD1NbW1q4vN8wjUGVdl0vnsZgdBrm2+W53IHHSLayOoFa2Ai0trx7UWopvxMWNMkG+SA46oBsy2FHeSH0q3QETPAa97L5skUawUb1pI0w6eP78JveRVuHKByIaxQ4RkrYfIJ0fUONXzV02QlC1e93rEMO9eaugpAMLg30UCLiY/wc5sfxE01M7VAVmPy7e2FqSHuMww+Fh0FpsrKb+so6ii6QNEjZdNhZZ/oU4OInQB3KntsLl/PWUPQmeVRDRjZX2rbJLUJp41+YQlz7BoVKq/VCRcdirrpSxnA1F7cQhdj287r8N+P1MZz3CgsXEeQTprBdhiOUxDj8OnC9ifo6H0NahS11TuRfSaVROqe0QEg2yT0ujXI6nbBXaaO7o7Y4I1w4TVdj/MWhvHehD4/sHad3YhLVLBI6MkvCzYnk2tTppkZDgpQGga0GlYKGYDH45EZ7+O/Ag9Ulwmcg/mesULe+ryXjaq8KYvpLBYD8yQDVhAq8qgcJRgehAgXxeQWMQEG0TIFUQwmxyKorIDcTaSYhhmaESsClIiKGtzUJBLWn6kBBCRIS1Tn4WznPLF5E/gRBV+UhVrZhKLXxUIgyGgimGiDVBsL4BqgNJIHpHsLumwClhyBPDyHqHuz1IMaDQ4+2IHm2IKt2EN108Lwc4DQPdN0DXfcwhgeCHyAYHSAOG0BTEmGMCGNED6HgDkLj0D+is8BOhG1eLrcT5rO2PjtJD+FL7icWdyB1rfBserld3w9vt+kTlvzD87p4oweGI/e14E5a6HIdITFepkSUq7eAKKz4fLndvj/vt2l8H6/HS6nxsI+a1N0Joaa+FjLkz7W4Ii5OXp8bvTDf7vP463B8ng8/jpd96XRlAqpoIEw9W2yuLsBS2my4f98bNvV9tR2ELISan2WA4de91Hs7zMMJm683WitUhWejVR25w/DrNAxnGjarT3zC4Eey/ZiOh7VJDXND6uIMtqx5Jgo3pMX+UuHl+LkLfKBcItDMGIB2Jggj+8sYSyU5dqaYeoe2hXObKFSrL7aXsF2Ksh2+uZ4bwtRD9DCE9IX5tVTiwtq42tNXUSj0WSxtfTIP98WB/HXFl9rXlyq/wMosWwow1PFvtWUfSYtKLGM8x/Nakox52yOqOSJU0BebjRUkoqojwiPK5/FXWUCG+/ed1YCaG2TqLDE6/Lrnd5suGUGjnrnCRtKrycd0XN9q5jI9sil+l9+P8/5NXvqeVrfSQqDXCgvNfB5/jZ/PT3oiRbooYXGHbGq8vl3G9w+swe2QbFYYFFoMzgvkY25iQDdRPNEhaP/N9YxV1CRFCLU+j7+W1/KCTyd1hQUtPId9Hn/9PI6P5eCJb55GN0+6MtMy4nWdGCu1wlS5U6j9NygSjQEaYYpcxBhAAgZoBNTfMJDFarxQw8P1d9V1uNXAqU6IXD6HxwdNIEPlcKFRpemFFSI+x89hH82s0wnEhq7M9qTR9iT8leP10PYHlKkBmIlChroYXYpLzx+3C9mRUO6NUFa5RIfqpvaNDJVagQDB4KUqvHiQ+fa8fFvqbrZGQNEoByMIV62kuF0mAFcLwtbXH6Sv4d7m6XLDDMfWlx2EVY0+r8PnUogFz38Uj9QOXnDpvMhGH7d5wK6Ksh1KEhD2B0pVQvGMRWFlaYe4ZOiw/juUhFLvyf2XrgrDhdAjBbTUA4MqqGgaojShDsRnWqir/7z9WGq+X0ZMLGxdpFTas2u1lU6rdGVT2qGKllLHa7F4/b0XPZs6FGWl8/j2YyjyInJxKCIqdeEqc7nqx/Kz78fpSAqDor3HCRtd1+ZJ71jtUcRVGF2oDf4Y55F76nUzRGGhssVsqqe/f+gePXQh5CwGHWMPPSdhG99sT1vOIIJnTj7P1zr7jD1MyeTv4Fpvf28PdatyQjCW7THPAzWkcsJSLou5v39+xytYvb8GYY2xxRCzSuuAOiYIsdlmbHHRlwpIxCiaesIExM0ofeMCmnlCSf1iLuX3Mo8CzTzx1vRj2Gf5BotSy4RJdZst5uLQNBaKxxaDi37iOZ2IORQdkArGFnMplZB/wCg84IR6xdXovq2wRdO5B9xfKnOoIFToZPs0RUcj19kJ9RObsX2Dah3R/BH2lN4s0vkd0RMXJsJv5nZTyHTomQvVQotBxlT9pMXHotuP4dnYl0yHWbp8Qj75jcl06HQpLB9bDHI7k6mTuowXUulikdmaTJ3SZKQ62mKQ2ZsMOuF/xUd8spuTqQ+/xgs5z2Lvx9JyndgKyJb8fdvrukNNHJS0hAJf8wQVBil1QSA3qgTvpanWrUaU6Oodkh4JS5Vvlhtmbb29+rgxV+E8bVRO6WsHFKq0eRC1Coth1eY5SWctWFBRWDG2NsoK8EItkVLi+Mifqq8Ej65WqIWgZtdOv2mtvk1M+8t6+TdSAsiUd+nrjrRQYg54tYrSQ0C2zT2+2ilWUepOYIOsJLdGi8J6oXVtmf2jq2sbKmnh9NLhEL1v9STYEkCgTJjupYfAbPzAYOVQv9R6K+ThpefrbJur9l+fsHX/lQk2j++5myabv2Tqp2a8NFaWLe9bduIbUuc8Siuyfj4fayuG7L3SYEN95NTCfKNscrr9Pl4ehCFEdGO/Yu5x+77k+/OXWb9kupdOrs0uDVSp+uyphR1gaoP36XYfpsdIMGF9eNRCpV1t9jnhhod1RSgtFNpleztTdV6+UIxODnZ1GD8IRRT0zmuUuetB+lrEZFtxj03ZBnUPjQNgAxmrJuen/flKhscVURhb41cvFFNfh8fP2/Qd2+lqO+WXaMBHvTAkkW0/bqeP40jDbCaiNjfCqjxg8u34PA2P430kRlHrGOFhHYyuZoZpb9Uiq8KZUqzmD7t31qA+RFKZw2b2dh72V+qRSdlCACZTaa+90YCMypaBzehaHWpvFEmYhPKq6/CT9Q4jKtojLcpwHX49cNt0DH1r11AJNf/XW1GWPR8fw/Wx9IAjqW6qjq5LX/bbeThMNxrcQ71jpCk51xstsYkK9Un7W19v0+fxMv4zfHtez+TCbIeKOwl3uOvt57goQG7X80zMoco/wv3t+vzMzdIOuV/AbVplQXfSnMLUWoZeSE+uz09aitzU7oKVrmjJTjt3tcZsVjgL93UPvaq9ZSVUViQ7SwfJpUkXnse2bjPuhatXMpjDWqTAjO1QDSShu3F7e5sHIqVGW4sRCqZul/MwPw5re5TDx0AFNEojtbvrZaGKbPVl+gECWL1s7bpdcRuxWlopPQZyjcwjSrPfmrOUD1sB4/wBitSAzmRzFDRUJ9NQJwIaXxgnVDXly2zMGVQ+SuhS3qZFf0SSGVDI20BJD2lSarZJky06FJ43QiVtNsbE3urqIMZL72AWPS/n6PH6zkiKXE05pGGQbJbsbxFVzJKWBkq2WClQ7SVBPVTTg6oeqjwaL9TM3p6P29t0vL4Pa/YoJ7FCuY99J9xab8/HUsGalF/Fh3V8phRGQhYXahrPQxGFEwlunaQujO0Wi8fn+QcW7Kuur71oaUpLMUiCXygfSkORmB7E1NAuwHihSm9tWMrFWHAXdah7BpkYcMbSQoiQR7o/bvMqWSF9KtGxQLj0UIuH4/v7tDgnpAkoOhsIH+lim4sPVa+2yND9eD5ez/fjKWl8f46PjwtufKqQmq7vhLvh/bguGMNi8fSciEehbIdq2wi3wtro7dvbc16S18+seVTkRrjKZfMpkY5MbkQejVBVfz8uGTNvx6Kk5HpWWoUq5wjT/lZ1zPAYJmwMSWGNFW5oqzH6MqMcNSht00NmwVaUAvoaGC+Mwy3FQYZ2vyVUqqbvhG76avRj+LWrlhtQi1Sohq6VUA++GuYrkCB9V98JFU+rQa7wolXo9POF6xuv7/vaEDWN0NKy39naNMzPCxGuKgSQhbznfpwe43HxjYdpXE+RyBupNyBo1aegGp7y4qWBVKTqkFpMl4xQY0rOp+khhQWalxgvDP0yUW5bq7SgK4XuIASooUMNZKUaaKtkoHydCcLNMVd/xzyxLvIkTBnPds5LfORJQp71GUEYLcDm9il99W0SKjiEde6NQrBfSEdSKAzFbUz14kBXJ2i8ouBBKijmqaDSq+mFLR7TuFzOo6nbxUOaroUSzF54zs0j5HLth2/H84Gp2Y4KEksFQMT0Umtguh4vXLmnuiqAUP5DrN8eH+QB1fFUJ3Ss75fn+3hN5XnItEGSDiFwTua4rRM5dEYo6EjmFiX+eCW+h9Ko+AZU//bC8PT9Ng/j+Xb9OM6kaJ9CYRhhZs/9NtPtGp3MhQGnxczqHKf4PrGIjmTC2jObxeflcqVCN6uQG2uFK0+xmYEBMYmcWGEHUjCJ2msQw8h9FVZ12gxPtx/LLOIsa+RtCjXUYDkvH1w4ySikFRJGCRfLL40iKi2kHPdpOC/ReLyX1Z03oYDB5g0IYcd9Gn6Mt+eco4c/bo9hPnwbHz8GnNehauZoeuncmMbbND7Gf4bzmj40zI/xk/wQhVitscJ6ALklCPIW6kcmjX5lO1RIWk0r4ZziW5TU+Q3KQPneDmpxbCkyGrppamhxp6E2kYZizbronoyRnq7g2hZ9y3lY/++qbXh8MEfDenk2wgTbbYh9dw+jUehPCEE2iz+O03i8PtBl2pp8eGFwEmjAYan1/8ShqLryXC9d9IvBXcpenQ4q9m+StWb8DelwemGO4n26rSSEqBA0KkksxOL36fY5zsPb8/I2Lq2893dRoUKPJgoz6+7T7faG7SDtuioua1EUQrl1BT3X1VZJf4veQxFIo6Ru1XIph+vtcXhb0vywm1aXEZT6+qu9H8M0vi1r+FLBi6vKGmrL0sX1dntby7KejpfLtyOuj6KMRsdbIZTajA4/BvLOqQ7JCYxQpLCZXH447R9iNBJdCzlIZXO8jsQP7JA8wUjdSjDJTGujkZJbeojfTD5PJxopM8gPlpblXG3epvwq4nNWdY0BGuJBTX7lhUq1LKnaQxxTl7ewQt3RYu02E1dT1R1sTC/1CFdBBnpx6oqv0KpXaegbK9UUJtN/PlvWJ2lh/SNiun22REXHnTTaga3vzpYoa9YJO5itHjcNDna2Xtq1NCywql6wm1bvjUIQmMwcdn2e6gwd6ByjutIIRHXQfcJAeS5TELDx0J8OWgkYaTHP7YrQa+1Q6eqt30oQZhsks6sTNdMTbkDVHKzUA+B0R7o+PuqSawD14qHBH7RUUVs2uyn9RRQUZlB9geNL29Sy8pTSYwr6mqgIEaa4hRShUwc049IKypspqGFfBT2hBb2BWntGGmYstwM/tjr5GvqTK+hcpqIwC3Q1P38sCOr4PjQ7ZdaNhKCzqRZS4PsTz4sYkIw6yrb6/zwHXCZZaRRwtMLsyNUOF08wqFoNlDAUPqfV7AoamZO0RqheyHl38eBaoCTMF1iq3h/WGoh8Ma9a0A5qWSfMr5mOP1HJ1/lIkEWPct6isKoENbvgxsPC77gBUDEP4XxcB8AVq3ztKyu7lUqG/jbSeTAdfx6v816DqlGUUwjVXmVEoboj0EYImiRpLfTQ8BjLzaZVZwKq9N8JV5ZpqJSZuGh4XfbACUOB2NzheZ2Ja97XiUtOGPGZhrdhGohM09VMOAgD0tPwPs6PYSnRyAomah8fdlktzDTbjHMMu04kknlhxR6dpg5VuiwroBAr10Z5QK5RQzrhej0NqVv9Y6TTqF4PndAnnwYq2NSo9ogwN28algKUBP/5uuydMsLaJdOw1gfZJvd4u5YCF628RdSd4guj1DWHyrGptefjgqVQn1NIaMt48/34OH0seSVIp936YfWBTbouXIef59vyOLCDVAe04OKFG9twvxx/L2rcx5D2oJ2UW6E+EiaI35HF8mZ4Zzc6lFgFnRAt9AW0wrR2rj907UWrqj50OWsYXXpd9p2TPmiiCo71eUnLV7hGy4pgUGFCoeJ2NfeD0PRah+KlM4GpBGGQtiEImS3LzDtUEl0Lsc00PJ4TETfjov3S7e922Zdvq/G7F0ZEp9vSjXZ5xcnBTdVEQW8RD2FUHdl9XlNckhTaQkmZ0JxcmkW3jrDAhSVQdfo4XhZFAClOVScRdkLvfaLh2KWLT+0DCOFfzpY8D9fb514DrGpppBaKA7PJNSFibxBF7YXT6EnK1qE1TCjYnE/HyxH7C6auzmaF1GQ+fQzE+e5QBSdohGI0CFZ1KZpuILXQGOgxCc0hjRVKD1M2KtYn1cl+JczjobR5V+IQuodGkD1cnxfOljRucR+4onyqQ6lrRrjk8IaXtYNGiVE9DaEkL1l/mSCtUV0NoTYv2a2cjXLhLKOr2wNJJdJphJ/T+KD7oDIa0XPhkpzSso7T70MqeFBOE/g+e1Qa0pbCpApCQTpXMFybBIDIDfrJBmG1GHo1mPBZVPkVujlsHWo8CMGDUAgOA6bx2B8fkJ+9NY+tmDME1DU06jZf/cn5F/MBuOVUVG+4QjnmPJzu2rrvqOFOX7exccUXc8Xn9tI1p9geTucZJyzX6YtSFwrM8VKBiPKxO2EQbzPKZ5fWrqMSxtrBJlu9IqJ+pkoIAbPNiTynundi6evshQXYwWTjftZaZq2E54nNKHs/a0GzlnYRBJuN+1mHMpXwvDwvJRqQo6HRs4Z2r11Rs2sDfUIgwUQb2Jx1gA0bCoHrWPCIgaQX6MhsPGTGBVDRB+FpNl1+M9NY1auxFtZLnHFdIqKdQHUrhOy+pFgf9jnWAV1ht0lyYHnsS4sYA916TRCel9u53RFFfKR924tWfQkb4LlXW1PCGDirfFc1xwdmo0p/CFWmVyhiDmjEAz1oYrlPsTiKscTMoFv30k65fIKjSdfD36A0Xwch567sXaqDnklKA9YqzZ8U5HcuwuvyCQ5YkLWnesCMvQH8VbrnqN4CCIOuTdBhVfUl6qCg4YSygNigC5Cym0x6E2eXt1FBm2jlALG5ohlTriS/KgdNb11xx5XbuoaDPegKqzygPQ//wsN/FxS4RcCsQmkwrwL83gABolB6L6oI/zbC04oWYGD5vboDZx1wroZW1LoDGNiV0TQ8ad1tSLGogrTa+j1BR3oFwFH18AnyghUgY5i0WhVHT+tuAxig4YOuUVvisQatn4Z/a7rNmYS1GJpwG+gBBYXotQmArzcrcTvYGPgEPaW22k8wRm7kt3wy8Kn4lLqHcXsHn6DnlS1viobeodrC7gK9dbWDPCRXwmAaZpj25V3VHkbbckpCQcs6wPOAdULDzNERxogwRoQ9CtYDs3Wl6WBXg45oRhX/1ihIclCgm/3/Srui5cZ1Y/kvec4DB0OCQH7lVkol27TNY1lSkZJ9vFX59xQpoTEDkruj3LfNyW6DAglgMNPdQ6kEzZR+L1NaR0w4LymfklDxMtQvbL6c3LfS/bhoKRElbdI5I/EeiE+FV0SUfDDnjGLbDLd8PKfwrEfqHU9rjWSeuk3VHEdGJhxAX/u/u2XblCjJW84ZvcAy6GmYvBR/1jzCvczGoXHaJMHAcYANH8cQ2rmRb/DfoMbxLTZoMCnQwpYCjqvgscli8yRcDyssC0KjDELym9DOjdDxkJCdcdA1s7EIJOdKJzb0ZLVyshiTBVZnwCQggPA4Ez3Ynx59/Tx6/fmIErNnTEyNicn7AKYDJBICiYQY0wEONuWOhoyJsaaP0sT05IL+Jmv1TT44zz15jab4JMaiZUabbDIUnMoxG61bMhw7jabyyUZefkbztUYLCs16pU1oxVtQpRVzzuEOtvTcjqz2bCOvugAcLzrkZ7VxG3l3wNRYivbljKbJwFo8mToCjMoNoF3LNcFqnzYyNwWc/ohZrTAjqy+jlWuC1RIzUmkzXLEmWK0wI5VWou3HyeN+MYPq9VoT/IAtlhqrpWZsHZjRikdTS82cgruDLQ2YY62WmjlpNDUXXtF1ynKftRfH2I1zS+65y2NJBJOpLSM7aexUEyPhwbnJKVC90dJZaDWoLMabgDYHUn3EIgaybkZqoOvQb44jWVi43FoLcWN36d+Op0H+jPH69NlfLoVFnkx8kKsxc0am3kz36D/3N4aiCnKUtxie37r7XG5Jcs2ektRUOAmwkZw3aXD3w1u31jFWRq8pViJnVJWN793h6WfRM1ZCWnfJ/q2gx6qN5/6LcTcMiXUc032LHMJs3MGIEXDDsofQcZmanOnAv4ipXRtFdHquGNkA3LYJd2eHmyGn9DWzNck3ZYOPL7fvcz++dt15/1NQaL3aNPGVWquAcoStFdeqbRQr21oQnIZYf3a5ozrwqJ01ab6WK/fSAoQq7EMVXiZaXRHhv9VIMzVglbtczUsvznG6ODBlpnmb/4RXDT9cTokQZphhINXBaMLNId0HGe24ORgZG5iItWNG2VV6oyAgI07l5l1//Nof+gJW9iS2lqLQa1brIeSOXqGJCnK8rkJtwdrSLo/01F8+95repBS3EWdiNHo1ZOzUIVyht8rM31qZmPb0zY6BtQqijfyg5THhVC4fwpaUsApGv5wbcH986Z/LInGrJvZhuMKiOwTVK9koz7zhrRbnSEvivfXytazDB3n+UEQYEjGrbI3YlW/hS/9WEAi9pBuRtevyHXVJzGlkU5I21UJCOq5CypTHrOBB+p5zoQFqnTYfiFnBk3Y1BytNZsI+aK2zyp+wkIw3ksXXGomTE+TGGvPy2htStBfSL455ElKGmRi5KHgaUYu/F1E/iujTIvLAhIzRA5t8IRrYLI56aXOArlQhRTsxF7RqFLRQ9GnwE1r8vYhiTkTZROQAoYxjIwNw+jF/+AWy3WgqmIU04zGVRIhRKuKsKsNzt/h7qBxSzIUaGLohG8tsvRj1n2ddKZX144h3jyPM+pYnWJVM/g3xi5V+29jI4zbE5lGjUiLWy1v/eT2Uph26VykS9tbpPb4dSr5GLT8K1DrNPL0EudIZJtYqdWPkwZeIa61hpFKksZIKEu7yCKdKGdazUd9VIP62o48yr2cjHbUYwGAiotw02MyQ0uPM3VMntnKJrqQUzNbsikY/DZOz+vPPdkMoYlaqf2Nj0ds4S4JOo27bRr78eOg6Fd9Op3OGqSvrvjDhLLvDy9icrEWIw/vLuB/f925HLqg3U8sJ8+kU9NZM7qE/76qKql3Z+7lVAZnVsXY8H/rLwkixccrj0vppXvYf3ZadvHyvRk+nCa9QO1GtAmwQVIyCpNm+eT+89L+SF2dhzOqUGaf1Y77sB72ZKhfO2mjwO8Podxp15x9rqXeSL+ye3ycL7N3CAY6U/3ON2iaoOIz4h1vc7KF652At29+fonv+OJ/642XtSZShM4qJNWJmxDHcgpWOFBcHa+V1fpKP7mf5CMqtgwNSFYizOEADFcCOiHAnj9aS/vQIeS7U0pDWXq3RfKLA+6NLJisbFaOYdunx0sqwmoSmAYk9x8jxZIdua7J0Hu/S/V3ox2Q6wbWglOAC4Yw+bpPfnFpdUREeo/VVnob9W7fT2SDXqhlOj/Yg5jB1GX/Z7T/LY1Y3UTaK8SbUwvxNJt6tR9mi5y9LKWidEs2NleU84213RJFbXmMVisyYG00knHK8NH/7pUW1l5xua6foG0xZ/4iV6hZopZTOWIUgQLnU+9a6EFYmKtaqLmpUnI3Xp6UOllTFLe3q2CysGZwEfUvq3nzBzqdD/6xdWlQPgqzGsHLB0ih5kOUYkiYPCr41OpgrC/qTVFk9eJMbw4QZb+putXWDVV1eautm8dsCiKo5MlsD6hVHL3UrZnCCuUZhoYHHY4t9FOk5DtbL7m3s2aGt9JaYCmBytzZ2FBuv5/PhBy0dTsNu7l24e99PLbJ2X0q34aTizeoPvTXCFLuU8NKH1soqucF/OY0kjWet15Cfz6eizZa8b9bWzPfP8fl9OB0Lnnwr90ciIxvqUjL3lR8rOMlExuSGfLnql0rrvMYYg97A+kunnaNVYFY/9GCpwUSBJy0rH3m26dFW1PvErDSQxrMKkONEsS2PeGn/1RjrtDMifvMqquy8Z9yhNqv+TqatnPlXjx8LA6Wo26waDfEu3XhZ0AbEm2iNxZUpmt7d2m7oNFqtdvRoVJ5e3oeuaE0mDptoPBInlPH9dCjKhqo3NUimwRinXt6H0/d0q//sx8/J/6PYCpRhubEoOSWDpq5P3XORupMMFg7GWGlCGy/7zyLelflR/Ooa9+0a9IkW1XUwXDgYCz8YezPwVrZWdzOqP8OeVteODECCcSWe9v05VMvbRiuv6JTlHGQMIy+n/TDsi3BOtcREEcv4UZwW7Pla/uLGmKa5nN67v5e/t5bBZpOkcoTOJY6gkCEj5UuMNLdRul7Ow6QD0MOKOWmMxppzG+hbG85+ai9dhBYsyZG19UudMcsrk1PON8Zs9g0qJf00nMzxg9WPBZaCcuiD2CoGuY355bbyoHIPN+Yt1puCy0/YuP9MOOPTdThOZ+nTz/PQLZ04tEviA7ivQ9f9+g2wpKsZE0I34JXXp9qdovTaYKM08lgUftnbUfFGmY1cr8tpsqBaYeJKgqIjY0r4cjrtDqdif5BhgDfecieg8f2k09S1lAn45ObnjfXfuffz5GvWf3WLpKbqXwIqoDnyPt18WVR4IN2QKRipzJfTeNwPH3+Nf42FlaEysINEj7w1rjotd26SMQaBhNpAl5QoJukPMR1mMVXfYyLGxSSoiWlPiin9TFVKQVCVeJ9UQdoKMTtVcOiAxG+yJ7//icBooMwlgICXYb7GkBDX6eAhWIRRDWFu3YBACtVVnRLqVOc+X1UmjcCgvslfCCS/mY8BZZcH18aD6OlxfsNLlDycvT1kxR5HaQsRcwuRcAtSC2xyqM2KMgiqA2YjcH6vEPpCEBwgtYr4txHvKOKbwOt1FeSpEGm6ClLPCtJbvFVXZektrDgpzZCjTMrNYkGP6CnxMx0+S0eQoiKL71yNP6Xt1aEFsHNwKmU8AUNCDKKQY7QYRrtOx9l7CDzTGkLfGvYLNf5t7fEnyI+b9BW7BmTJBrJY+Jo4D9dkDyk0FIOuhfgXhDCXXZJCWgsOaSgHfrXD+3URY0SMESGlw1rl3B6uCvgTnBAIPDGIsZmSjJoJCTPCcUcgVRHaNJOxkJT2sfKU8bKaHI2umRJsM9D0kq8djX6VCXlxhnl5a4yt+XzJaNsPKi8e0ZgjTNCbqCTJ/1iZlFpvU1oVIf0hpsA/Jg1oTF9STJ9ATO8dSm+qUnmMKmyVFUS1MOOgCpar+BgJOnAikMYos/6gFGAwhxkHUV3huAAntBY0cxwXUKDWablSjYJ+A5QG4zaZoo5ttsmUN2y4HrxDD6q+RwiCzqUEDT55KB58zEcDCJ4IDlqQBVtQ6NusqcWxHDAbAU+fWwkGHDARB1HEv414RxHfRITTQAWdP7YTV2FTqrC94626Km/v8KyCs4eDs4eDft9Bv+/wMTrCVukYx0A2nYdfAdokOpdNwTAu43AC7dJx9t6BRJtBlqvh71XjMKlxnEG04GqPP+FgQ/NE1+RW99i2YaXkfI1DAkcrlNKuxeHUYrQWcxrgv4GUjANl1uGtOvh5uIgxIrZ8rFBG8Maw5mOqcCCgmIZjngkFdxjKMBxlmEBRJXAbyKjfupyu/fESFtkTL8u/MUVzaFoQ04+JCP4gtCdC+ESZeFthJ6iwi4BKXYNZjEQY1fCoafAvGuxonvMqRYiWVxpU89HjvyGcgHOOqzivL6wC+K4geHYInh2lCqfDgexwIDuYhDrH+e3gHVszzOKdfPXdty7gKg20sSnZZbh5Su++37vuMO7O16eCdMqSk9cYCS8lbNbTfPbjWLawlZ0KvJG5tj3CHxpJNdIeyltv4vfRboMtJylIUTu11lSiQl2Vc1GlWFJkDcU2CrmNSkNgu8P6bLDPw6TLG4uXsn3CSq/koFJLFWLqCltZa/RkUO0f1pSr0+1VsXEex13N1bugmn8+jvrVDWPxRlxQfT/v209jrHJLl9Hjy6JFXKy1NvLhb2fVzFUJnZmNfQAl6pboITZaaPnwh6eQ76xlPYBk97O1tLQxwJqkMzaSSM/WPNXGCJ/Xw6XfvxVvIMpkuLPqZ347xupcyY/H6uayNcoW4ztKGZOz9i/YGuVusasp5dKV35uPr4R/n5n1zVlVOLg1CvQk+t/d83XBXIhe6YKtd/k12O7zfNH+nNJ1wVl54uvYW5ZPUfb0cP/DTpnHWJpaR/lCXW2ty6yBrzoySw1nay3tluhFyCE3edwYmY1kxAX61K1jGddIOisCXmZrrVsOchn2y67pUXXkqq20nFVczWaKyrDfypbaQF57pzKV01qzRBk+bfRbm4Dy3LbWTjP8XcTTn1Za1bcqX5QdaHOXjtZIMhYDLnnwrBzUjZapArE/TpLjZdQXlTtDbfTH2QAuPhrlylAbW5huQa9+NbIzUftwrPC5P+7fukX4JFGtzTckKkKCja+xVo1CHt97ZTywNUSthnh4F1v7UNS01EZ/kCXm9pnUqmPDWoJeDDBPz1jsjK3aGR8PlX7bhUBdAIPRaW4JvnKStmrbbf/Xx15fPDLssqY3/qRjUeTh8PgJlFAX/Wdaeeg/HsYVHGel7KyNzdwk3G/d5YklVZ+Dlf4h8Y8vawGEVDhA48SPx8xjsec1kvEZ4GXC/vGZ2ZgQ1RfLSIdWsPl2sjVEVEM8/uQrzFC15T0eN6wnPyqlFUJhltlKwMoDrC7sIBe20fdG+jacho/SBUldylHkfTwKuWGvdGUnmWFkNgpaN5Any3k9I3LzeCQae+2G8urnVEuG8MCDvk6y9n7L3kOykJGOd4/kbl67QRrUbbrTSeYP0vjOnhGdR3q9Ht/6qYHfWHa4kUSqbExvdSxYxX/qLt/dxAQ7FcZMpHrXgfDhjBLYy3A9To1D1/pnKhO4urLusd8nXUuXb9V6myzOPifvjdkGrgXvuIbiFubnXMO3C8UYbnDnbODvhfIto78te/iAwfycW5S2wMXgFopgsDK4hUoZ5vvchnwVgkyoAlcafApYqHMAsyLk5uNQHcNWncHU4hDx/+KZ0Z2Bo9GUa/YSK60a2laKaiGDdpU17XMHnf9r8fnKXAbXMHhuravl57xwloi1Nh60//LVZLISk3Iw2rFKuNmTYo3076UkKViLCwK50FpKr3lu8keMD8zjs/cg7ARrVP1z3mhgS9Rq7rPxTLgZHKhXF5UUJRpvtDeg1SbA6rBqrCXHG2Bpvj9RViSa9cS4oc05lP65AJSBRWMtf9wASzdyqpR5nNU6DWi+AJNXL290jUpghe8yVcqy2luTlnc0bbtMlRT5u9bYQy2BaXvkyX9SglmTNHew4gWoZg9W16M71nk/jN2w8DSmSrV8aK3yrAXo4kYpPR2D0fzqDrvaIJwq1UzC6hSRfE5WjJRUy4dgJT7f8Rb6eKqUXX+wJlhueKXPOVXK0T1Yr+QJrVgfyoQ9PrZ0S5dzqpQHe3xs7V7L1aYs2ONjS/darjala64eW7rX8gXIXEv12Mpduzh62bzPfIG+4y0EFVQpYWpl3A3K76yRGuEWRoFJh0dw3qMguLq2uSi+wkYqGFo4+qE/VoA/cxDcL9srLL/RRta52wQcQNYPIOsHBPLW1ofFF9zIgnebcAMonwGUz4A4nYzW9sX33Uj2SptwAxhiAa1iAjoP3ftY/Xmo4rOQV/oEK/p45Z5t8Aeq8phG18BrWH7Xjaztt8b7+bV/KfhIXm4rAUKQBgKK1liKufYvX/uDhm4kNHr3gHZr7R06UdnKbZ8bZchkfsjjpdjyWS5sDg88Urndc6MKKkZGx4RUbPWsenHflSQmoGKb50ZVBIxh98wcLHBUOt2Yp75OyuHu+dK9TH9vr7d4mUE2Vioy3j2GL0MpL/lG1qR/Rp2aEPSTSm3zauelFt6aTs8D3GKh19PwudfaBJkKC8bGORlW3XEPp7GYE7kIjQFNxr7tO4tbtB5BtlQwluTzCN/vU3fq8/65e37fD/vnIkvtK+k2bEzYX4+zyLRbpiFfu2EzH6m6WKTtzxm9Ma7Hj+PpWyHWktzi04HnU2LKGxPA1+P3UNiyy0OHgtEl+np+KYxnWzm3ZD7WZ5zd3QNkN+citMi9lT76RoONG6p8YefhdO6Gy8/m+1J8B3QHscZ3i/Gmj/zlj4PKGYMw0hkrJrdBX7uX2Yp1OooP3Tj+9f3xmzS5LKGDm0/OOq2DOpJbeTMmB9dGB3E06OdcG8v117GwZpXVqtaoIZhAdooYvK6KlzGPNWAroLUPjjRkqI0kiwnxjxVo5TZmbRigiSuNXEjQKFhJN4tGFMSkLHiNm+mMs7/c+yf3x2GyCy1KFNLCqjIWa++4xRuW2gR4krfGZhyA/PPbUUVao03E1/6gC7Nexo654Q0c/KkW4m4oxyH18rgz4lAgj76XqH6Qh4xFXgIhJ0F7HYjcXAvndlzgGMpgriKkQKh+EHzdIb1hVM0Y+kNGM1uORlL0PGu7MlarZQTY+AyfG77Y4qAZvug4ITe5YHSomTMRE49U5/JlLpcbI+t4hV3Mkt/W4AMhyOdr6JJyyYyMNujL26GXCfdg9D6XepiFbEWa61jLQgVgySb0MnOU+1xDqk2t8Q41j/NTUtFWrM7ly2TrhzGD38/qdc5H45Te4/8FPAmC//r+2B9flhxPapwSgRhLRreBVul6K3OkSCFGZ3Uxwt0TfgtdefIbNUo39IVoJSj7UG+8Rd7A1jtiyegIWTYkvmJiyKAREnpoEzrhEkHTy7BxgE6VahwSKLJSA4VjAyVvi2YdLTTH8PygCCuLCH1xhMVClW0coGyFvtM57LXoFcxszEMVc7fyelVHBGPJt0SdzB71a5HJAiQOU5IwJmlnTExn+CsQ3BKIIG5nCKc5m2bh/lBD0t7gFTQQgIJpQC3Oc6jsKUI8HiEojZA3V1n2CYknhJ0ue2TDUYXZaNu1NoHLLhJe1c+NHJAELbo9bLx6Um0kjDzOFZ0bKet+rmHoClcPxoJheLAwevdwMJK2SlksycsF4TRyD8ChEc1TX8y9SlYahRYScbIlWiFDE3uVvTSygybk0uiIpDiBcrdNo1XjVz/2T/2hvxQGevIKw96YTPn63C095YkUeROhNUPTz1iyDN8FRmGGg/GnfO/7KUk3D1vqRb1KhBpttO+A8wH22pXkE9myDuUIavJOk40ejDrH+3ibTSqVrgvEO+OOsAS/N9ouJkrlwlvbdvC9H47960v31R1O5/n/UcEPK/6ZFbN7mpR/OjMnKxPe6EGcgDbU10rgZzUw+37vChwipZk1UlFmnIUxHSljOuN9aoo/V1uQVpIZyg7lLDZyFr6H/tLtFixNRUK2MoOAlbqX3ODkfUvaajfG/NwMWz4hK25cMMasCer2fAWgIqEb75Qa8KU7dJfu8/RyPZTgKrNhlLCtgQ/deLoOBbeE1X4ejJ6ta/Bwfi7wVenLeP/V+PP/WpuaVlXDjDmlFeyNmVFHg9FNfwV9a2JUYw/jmvvVDQUPWGzL1o6rE8hU3DhMhbdC0ESV6hNKxqvvr4/Fba6Wp7vPZjXGbevXx3kl6+JlxjNYmnz/+5//OPfn7tAfu3/86//+/Z///BfH7F1p"; \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/assets/style.css b/docs/@aptos-labs/ts-sdk-7.0.0/assets/style.css new file mode 100644 index 000000000..44328e99a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/assets/style.css @@ -0,0 +1,1633 @@ +@layer typedoc { + :root { + --dim-toolbar-contents-height: 2.5rem; + --dim-toolbar-border-bottom-width: 1px; + --dim-header-height: calc( + var(--dim-toolbar-border-bottom-width) + + var(--dim-toolbar-contents-height) + ); + + /* 0rem For mobile; unit is required for calculation in `calc` */ + --dim-container-main-margin-y: 0rem; + + --dim-footer-height: 3.5rem; + + --modal-animation-duration: 0.2s; + } + + :root { + /* Light */ + --light-color-background: #f2f4f8; + --light-color-background-secondary: #eff0f1; + /* Not to be confused with [:active](https://developer.mozilla.org/en-US/docs/Web/CSS/:active) */ + --light-color-background-active: #d6d8da; + --light-color-background-warning: #e6e600; + --light-color-warning-text: #222; + --light-color-accent: #c5c7c9; + --light-color-active-menu-item: var(--light-color-background-active); + --light-color-text: #222; + --light-color-contrast-text: #000; + --light-color-text-aside: #5e5e5e; + + --light-color-icon-background: var(--light-color-background); + --light-color-icon-text: var(--light-color-text); + + --light-color-comment-tag-text: var(--light-color-text); + --light-color-comment-tag: var(--light-color-background); + + --light-color-link: #1f70c2; + --light-color-focus-outline: #3584e4; + + --light-color-ts-keyword: #056bd6; + --light-color-ts-project: #b111c9; + --light-color-ts-module: var(--light-color-ts-project); + --light-color-ts-namespace: var(--light-color-ts-project); + --light-color-ts-enum: #7e6f15; + --light-color-ts-enum-member: var(--light-color-ts-enum); + --light-color-ts-variable: #4760ec; + --light-color-ts-function: #572be7; + --light-color-ts-class: #1f70c2; + --light-color-ts-interface: #108024; + --light-color-ts-constructor: var(--light-color-ts-class); + --light-color-ts-property: #9f5f30; + --light-color-ts-method: #be3989; + --light-color-ts-reference: #ff4d82; + --light-color-ts-call-signature: var(--light-color-ts-method); + --light-color-ts-index-signature: var(--light-color-ts-property); + --light-color-ts-constructor-signature: var( + --light-color-ts-constructor + ); + --light-color-ts-parameter: var(--light-color-ts-variable); + /* type literal not included as links will never be generated to it */ + --light-color-ts-type-parameter: #a55c0e; + --light-color-ts-accessor: #c73c3c; + --light-color-ts-get-signature: var(--light-color-ts-accessor); + --light-color-ts-set-signature: var(--light-color-ts-accessor); + --light-color-ts-type-alias: #d51270; + /* reference not included as links will be colored with the kind that it points to */ + --light-color-document: #000000; + + --light-color-alert-note: #0969d9; + --light-color-alert-tip: #1a7f37; + --light-color-alert-important: #8250df; + --light-color-alert-warning: #9a6700; + --light-color-alert-caution: #cf222e; + + --light-external-icon: url("data:image/svg+xml;utf8,"); + --light-color-scheme: light; + } + + :root { + /* Dark */ + --dark-color-background: #2b2e33; + --dark-color-background-secondary: #1e2024; + /* Not to be confused with [:active](https://developer.mozilla.org/en-US/docs/Web/CSS/:active) */ + --dark-color-background-active: #5d5d6a; + --dark-color-background-warning: #bebe00; + --dark-color-warning-text: #222; + --dark-color-accent: #9096a2; + --dark-color-active-menu-item: var(--dark-color-background-active); + --dark-color-text: #f5f5f5; + --dark-color-contrast-text: #ffffff; + --dark-color-text-aside: #dddddd; + + --dark-color-icon-background: var(--dark-color-background-secondary); + --dark-color-icon-text: var(--dark-color-text); + + --dark-color-comment-tag-text: var(--dark-color-text); + --dark-color-comment-tag: var(--dark-color-background); + + --dark-color-link: #00aff4; + --dark-color-focus-outline: #4c97f2; + + --dark-color-ts-keyword: #3399ff; + --dark-color-ts-project: #e358ff; + --dark-color-ts-module: var(--dark-color-ts-project); + --dark-color-ts-namespace: var(--dark-color-ts-project); + --dark-color-ts-enum: #f4d93e; + --dark-color-ts-enum-member: var(--dark-color-ts-enum); + --dark-color-ts-variable: #798dff; + --dark-color-ts-function: #a280ff; + --dark-color-ts-class: #8ac4ff; + --dark-color-ts-interface: #6cff87; + --dark-color-ts-constructor: var(--dark-color-ts-class); + --dark-color-ts-property: #ff984d; + --dark-color-ts-method: #ff4db8; + --dark-color-ts-reference: #ff4d82; + --dark-color-ts-call-signature: var(--dark-color-ts-method); + --dark-color-ts-index-signature: var(--dark-color-ts-property); + --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor); + --dark-color-ts-parameter: var(--dark-color-ts-variable); + /* type literal not included as links will never be generated to it */ + --dark-color-ts-type-parameter: #e07d13; + --dark-color-ts-accessor: #ff6060; + --dark-color-ts-get-signature: var(--dark-color-ts-accessor); + --dark-color-ts-set-signature: var(--dark-color-ts-accessor); + --dark-color-ts-type-alias: #ff6492; + /* reference not included as links will be colored with the kind that it points to */ + --dark-color-document: #ffffff; + + --dark-color-alert-note: #0969d9; + --dark-color-alert-tip: #1a7f37; + --dark-color-alert-important: #8250df; + --dark-color-alert-warning: #9a6700; + --dark-color-alert-caution: #cf222e; + + --dark-external-icon: url("data:image/svg+xml;utf8,"); + --dark-color-scheme: dark; + } + + @media (prefers-color-scheme: light) { + :root { + --color-background: var(--light-color-background); + --color-background-secondary: var( + --light-color-background-secondary + ); + --color-background-active: var(--light-color-background-active); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-accent: var(--light-color-accent); + --color-active-menu-item: var(--light-color-active-menu-item); + --color-text: var(--light-color-text); + --color-contrast-text: var(--light-color-contrast-text); + --color-text-aside: var(--light-color-text-aside); + + --color-icon-background: var(--light-color-icon-background); + --color-icon-text: var(--light-color-icon-text); + + --color-comment-tag-text: var(--light-color-text); + --color-comment-tag: var(--light-color-background); + + --color-link: var(--light-color-link); + --color-focus-outline: var(--light-color-focus-outline); + + --color-ts-keyword: var(--light-color-ts-keyword); + --color-ts-project: var(--light-color-ts-project); + --color-ts-module: var(--light-color-ts-module); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-enum-member: var(--light-color-ts-enum-member); + --color-ts-variable: var(--light-color-ts-variable); + --color-ts-function: var(--light-color-ts-function); + --color-ts-class: var(--light-color-ts-class); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-constructor: var(--light-color-ts-constructor); + --color-ts-property: var(--light-color-ts-property); + --color-ts-method: var(--light-color-ts-method); + --color-ts-reference: var(--light-color-ts-reference); + --color-ts-call-signature: var(--light-color-ts-call-signature); + --color-ts-index-signature: var(--light-color-ts-index-signature); + --color-ts-constructor-signature: var( + --light-color-ts-constructor-signature + ); + --color-ts-parameter: var(--light-color-ts-parameter); + --color-ts-type-parameter: var(--light-color-ts-type-parameter); + --color-ts-accessor: var(--light-color-ts-accessor); + --color-ts-get-signature: var(--light-color-ts-get-signature); + --color-ts-set-signature: var(--light-color-ts-set-signature); + --color-ts-type-alias: var(--light-color-ts-type-alias); + --color-document: var(--light-color-document); + + --color-alert-note: var(--light-color-alert-note); + --color-alert-tip: var(--light-color-alert-tip); + --color-alert-important: var(--light-color-alert-important); + --color-alert-warning: var(--light-color-alert-warning); + --color-alert-caution: var(--light-color-alert-caution); + + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); + } + } + + @media (prefers-color-scheme: dark) { + :root { + --color-background: var(--dark-color-background); + --color-background-secondary: var( + --dark-color-background-secondary + ); + --color-background-active: var(--dark-color-background-active); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-accent: var(--dark-color-accent); + --color-active-menu-item: var(--dark-color-active-menu-item); + --color-text: var(--dark-color-text); + --color-contrast-text: var(--dark-color-contrast-text); + --color-text-aside: var(--dark-color-text-aside); + + --color-icon-background: var(--dark-color-icon-background); + --color-icon-text: var(--dark-color-icon-text); + + --color-comment-tag-text: var(--dark-color-text); + --color-comment-tag: var(--dark-color-background); + + --color-link: var(--dark-color-link); + --color-focus-outline: var(--dark-color-focus-outline); + + --color-ts-keyword: var(--dark-color-ts-keyword); + --color-ts-project: var(--dark-color-ts-project); + --color-ts-module: var(--dark-color-ts-module); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-enum-member: var(--dark-color-ts-enum-member); + --color-ts-variable: var(--dark-color-ts-variable); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-constructor: var(--dark-color-ts-constructor); + --color-ts-property: var(--dark-color-ts-property); + --color-ts-method: var(--dark-color-ts-method); + --color-ts-reference: var(--dark-color-ts-reference); + --color-ts-call-signature: var(--dark-color-ts-call-signature); + --color-ts-index-signature: var(--dark-color-ts-index-signature); + --color-ts-constructor-signature: var( + --dark-color-ts-constructor-signature + ); + --color-ts-parameter: var(--dark-color-ts-parameter); + --color-ts-type-parameter: var(--dark-color-ts-type-parameter); + --color-ts-accessor: var(--dark-color-ts-accessor); + --color-ts-get-signature: var(--dark-color-ts-get-signature); + --color-ts-set-signature: var(--dark-color-ts-set-signature); + --color-ts-type-alias: var(--dark-color-ts-type-alias); + --color-document: var(--dark-color-document); + + --color-alert-note: var(--dark-color-alert-note); + --color-alert-tip: var(--dark-color-alert-tip); + --color-alert-important: var(--dark-color-alert-important); + --color-alert-warning: var(--dark-color-alert-warning); + --color-alert-caution: var(--dark-color-alert-caution); + + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); + } + } + + :root[data-theme="light"] { + --color-background: var(--light-color-background); + --color-background-secondary: var(--light-color-background-secondary); + --color-background-active: var(--light-color-background-active); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-icon-background: var(--light-color-icon-background); + --color-accent: var(--light-color-accent); + --color-active-menu-item: var(--light-color-active-menu-item); + --color-text: var(--light-color-text); + --color-contrast-text: var(--light-color-contrast-text); + --color-text-aside: var(--light-color-text-aside); + --color-icon-text: var(--light-color-icon-text); + + --color-comment-tag-text: var(--light-color-text); + --color-comment-tag: var(--light-color-background); + + --color-link: var(--light-color-link); + --color-focus-outline: var(--light-color-focus-outline); + + --color-ts-keyword: var(--light-color-ts-keyword); + --color-ts-project: var(--light-color-ts-project); + --color-ts-module: var(--light-color-ts-module); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-enum-member: var(--light-color-ts-enum-member); + --color-ts-variable: var(--light-color-ts-variable); + --color-ts-function: var(--light-color-ts-function); + --color-ts-class: var(--light-color-ts-class); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-constructor: var(--light-color-ts-constructor); + --color-ts-property: var(--light-color-ts-property); + --color-ts-method: var(--light-color-ts-method); + --color-ts-reference: var(--light-color-ts-reference); + --color-ts-call-signature: var(--light-color-ts-call-signature); + --color-ts-index-signature: var(--light-color-ts-index-signature); + --color-ts-constructor-signature: var( + --light-color-ts-constructor-signature + ); + --color-ts-parameter: var(--light-color-ts-parameter); + --color-ts-type-parameter: var(--light-color-ts-type-parameter); + --color-ts-accessor: var(--light-color-ts-accessor); + --color-ts-get-signature: var(--light-color-ts-get-signature); + --color-ts-set-signature: var(--light-color-ts-set-signature); + --color-ts-type-alias: var(--light-color-ts-type-alias); + --color-document: var(--light-color-document); + + --color-note: var(--light-color-note); + --color-tip: var(--light-color-tip); + --color-important: var(--light-color-important); + --color-warning: var(--light-color-warning); + --color-caution: var(--light-color-caution); + + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); + } + + :root[data-theme="dark"] { + --color-background: var(--dark-color-background); + --color-background-secondary: var(--dark-color-background-secondary); + --color-background-active: var(--dark-color-background-active); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-icon-background: var(--dark-color-icon-background); + --color-accent: var(--dark-color-accent); + --color-active-menu-item: var(--dark-color-active-menu-item); + --color-text: var(--dark-color-text); + --color-contrast-text: var(--dark-color-contrast-text); + --color-text-aside: var(--dark-color-text-aside); + --color-icon-text: var(--dark-color-icon-text); + + --color-comment-tag-text: var(--dark-color-text); + --color-comment-tag: var(--dark-color-background); + + --color-link: var(--dark-color-link); + --color-focus-outline: var(--dark-color-focus-outline); + + --color-ts-keyword: var(--dark-color-ts-keyword); + --color-ts-project: var(--dark-color-ts-project); + --color-ts-module: var(--dark-color-ts-module); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-enum-member: var(--dark-color-ts-enum-member); + --color-ts-variable: var(--dark-color-ts-variable); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-constructor: var(--dark-color-ts-constructor); + --color-ts-property: var(--dark-color-ts-property); + --color-ts-method: var(--dark-color-ts-method); + --color-ts-reference: var(--dark-color-ts-reference); + --color-ts-call-signature: var(--dark-color-ts-call-signature); + --color-ts-index-signature: var(--dark-color-ts-index-signature); + --color-ts-constructor-signature: var( + --dark-color-ts-constructor-signature + ); + --color-ts-parameter: var(--dark-color-ts-parameter); + --color-ts-type-parameter: var(--dark-color-ts-type-parameter); + --color-ts-accessor: var(--dark-color-ts-accessor); + --color-ts-get-signature: var(--dark-color-ts-get-signature); + --color-ts-set-signature: var(--dark-color-ts-set-signature); + --color-ts-type-alias: var(--dark-color-ts-type-alias); + --color-document: var(--dark-color-document); + + --color-note: var(--dark-color-note); + --color-tip: var(--dark-color-tip); + --color-important: var(--dark-color-important); + --color-warning: var(--dark-color-warning); + --color-caution: var(--dark-color-caution); + + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); + } + + html { + color-scheme: var(--color-scheme); + @media (prefers-reduced-motion: no-preference) { + scroll-behavior: smooth; + } + } + + *:focus-visible, + .tsd-accordion-summary:focus-visible svg { + outline: 2px solid var(--color-focus-outline); + } + + .always-visible, + .always-visible .tsd-signatures { + display: inherit !important; + } + + h1, + h2, + h3, + h4, + h5, + h6 { + line-height: 1.2; + } + + h1 { + font-size: 1.875rem; + margin: 0.67rem 0; + } + + h2 { + font-size: 1.5rem; + margin: 0.83rem 0; + } + + h3 { + font-size: 1.25rem; + margin: 1rem 0; + } + + h4 { + font-size: 1.05rem; + margin: 1.33rem 0; + } + + h5 { + font-size: 1rem; + margin: 1.5rem 0; + } + + h6 { + font-size: 0.875rem; + margin: 2.33rem 0; + } + + dl, + menu, + ol, + ul { + margin: 1em 0; + } + + dd { + margin: 0 0 0 34px; + } + + .container { + max-width: 1700px; + padding: 0 2rem; + } + + /* Footer */ + footer { + border-top: 1px solid var(--color-accent); + padding-top: 1rem; + padding-bottom: 1rem; + max-height: var(--dim-footer-height); + } + footer > p { + margin: 0 1em; + } + + .container-main { + margin: var(--dim-container-main-margin-y) auto; + /* toolbar, footer, margin */ + min-height: calc( + 100svh - var(--dim-header-height) - var(--dim-footer-height) - + 2 * var(--dim-container-main-margin-y) + ); + } + + @keyframes fade-in { + from { + opacity: 0; + } + to { + opacity: 1; + } + } + @keyframes fade-out { + from { + opacity: 1; + visibility: visible; + } + to { + opacity: 0; + } + } + @keyframes pop-in-from-right { + from { + transform: translate(100%, 0); + } + to { + transform: translate(0, 0); + } + } + @keyframes pop-out-to-right { + from { + transform: translate(0, 0); + visibility: visible; + } + to { + transform: translate(100%, 0); + } + } + body { + background: var(--color-background); + font-family: + -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", + Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; + font-size: 16px; + color: var(--color-text); + margin: 0; + } + + a { + color: var(--color-link); + text-decoration: none; + } + a:hover { + text-decoration: underline; + } + a.external[target="_blank"] { + background-image: var(--external-icon); + background-position: top 3px right; + background-repeat: no-repeat; + padding-right: 13px; + } + a.tsd-anchor-link { + color: var(--color-text); + } + :target { + scroll-margin-block: calc(var(--dim-header-height) + 0.5rem); + } + + code, + pre { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + padding: 0.2em; + margin: 0; + font-size: 0.875rem; + border-radius: 0.8em; + } + + pre { + position: relative; + white-space: pre-wrap; + word-wrap: break-word; + padding: 10px; + border: 1px solid var(--color-accent); + margin-bottom: 8px; + } + pre code { + padding: 0; + font-size: 100%; + } + pre > button { + position: absolute; + top: 10px; + right: 10px; + opacity: 0; + transition: opacity 0.1s; + box-sizing: border-box; + } + pre:hover > button, + pre > button.visible, + pre > button:focus-visible { + opacity: 1; + } + + blockquote { + margin: 1em 0; + padding-left: 1em; + border-left: 4px solid gray; + } + + img { + max-width: 100%; + } + + * { + scrollbar-width: thin; + scrollbar-color: var(--color-accent) var(--color-icon-background); + } + + *::-webkit-scrollbar { + width: 0.75rem; + } + + *::-webkit-scrollbar-track { + background: var(--color-icon-background); + } + + *::-webkit-scrollbar-thumb { + background-color: var(--color-accent); + border-radius: 999rem; + border: 0.25rem solid var(--color-icon-background); + } + + dialog { + border: none; + outline: none; + padding: 0; + background-color: var(--color-background); + } + dialog::backdrop { + display: none; + } + #tsd-overlay { + background-color: rgba(0, 0, 0, 0.5); + position: fixed; + z-index: 9999; + top: 0; + left: 0; + right: 0; + bottom: 0; + animation: fade-in var(--modal-animation-duration) forwards; + } + #tsd-overlay.closing { + animation-name: fade-out; + } + + .tsd-typography { + line-height: 1.333em; + } + .tsd-typography ul { + list-style: square; + padding: 0 0 0 20px; + margin: 0; + } + .tsd-typography .tsd-index-panel h3, + .tsd-index-panel .tsd-typography h3, + .tsd-typography h4, + .tsd-typography h5, + .tsd-typography h6 { + font-size: 1em; + } + .tsd-typography h5, + .tsd-typography h6 { + font-weight: normal; + } + .tsd-typography p, + .tsd-typography ul, + .tsd-typography ol { + margin: 1em 0; + } + .tsd-typography table { + border-collapse: collapse; + border: none; + } + .tsd-typography td, + .tsd-typography th { + padding: 6px 13px; + border: 1px solid var(--color-accent); + } + .tsd-typography thead, + .tsd-typography tr:nth-child(even) { + background-color: var(--color-background-secondary); + } + + .tsd-alert { + padding: 8px 16px; + margin-bottom: 16px; + border-left: 0.25em solid var(--alert-color); + } + .tsd-alert blockquote > :last-child, + .tsd-alert > :last-child { + margin-bottom: 0; + } + .tsd-alert-title { + color: var(--alert-color); + display: inline-flex; + align-items: center; + } + .tsd-alert-title span { + margin-left: 4px; + } + + .tsd-alert-note { + --alert-color: var(--color-alert-note); + } + .tsd-alert-tip { + --alert-color: var(--color-alert-tip); + } + .tsd-alert-important { + --alert-color: var(--color-alert-important); + } + .tsd-alert-warning { + --alert-color: var(--color-alert-warning); + } + .tsd-alert-caution { + --alert-color: var(--color-alert-caution); + } + + .tsd-breadcrumb { + margin: 0; + margin-top: 1rem; + padding: 0; + color: var(--color-text-aside); + } + .tsd-breadcrumb a { + color: var(--color-text-aside); + text-decoration: none; + } + .tsd-breadcrumb a:hover { + text-decoration: underline; + } + .tsd-breadcrumb li { + display: inline; + } + .tsd-breadcrumb li:after { + content: " / "; + } + + .tsd-comment-tags { + display: flex; + flex-direction: column; + } + dl.tsd-comment-tag-group { + display: flex; + align-items: center; + overflow: hidden; + margin: 0.5em 0; + } + dl.tsd-comment-tag-group dt { + display: flex; + margin-right: 0.5em; + font-size: 0.875em; + font-weight: normal; + } + dl.tsd-comment-tag-group dd { + margin: 0; + } + code.tsd-tag { + padding: 0.25em 0.4em; + border: 0.1em solid var(--color-accent); + margin-right: 0.25em; + font-size: 70%; + } + h1 code.tsd-tag:first-of-type { + margin-left: 0.25em; + } + + dl.tsd-comment-tag-group dd:before, + dl.tsd-comment-tag-group dd:after { + content: " "; + } + dl.tsd-comment-tag-group dd pre, + dl.tsd-comment-tag-group dd:after { + clear: both; + } + dl.tsd-comment-tag-group p { + margin: 0; + } + + .tsd-panel.tsd-comment .lead { + font-size: 1.1em; + line-height: 1.333em; + margin-bottom: 2em; + } + .tsd-panel.tsd-comment .lead:last-child { + margin-bottom: 0; + } + + .tsd-filter-visibility h4 { + font-size: 1rem; + padding-top: 0.75rem; + padding-bottom: 0.5rem; + margin: 0; + } + .tsd-filter-item:not(:last-child) { + margin-bottom: 0.5rem; + } + .tsd-filter-input { + display: flex; + width: -moz-fit-content; + width: fit-content; + align-items: center; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + cursor: pointer; + } + .tsd-filter-input input[type="checkbox"] { + cursor: pointer; + position: absolute; + width: 1.5em; + height: 1.5em; + opacity: 0; + } + .tsd-filter-input input[type="checkbox"]:disabled { + pointer-events: none; + } + .tsd-filter-input svg { + cursor: pointer; + width: 1.5em; + height: 1.5em; + margin-right: 0.5em; + border-radius: 0.33em; + /* Leaving this at full opacity breaks event listeners on Firefox. + Don't remove unless you know what you're doing. */ + opacity: 0.99; + } + .tsd-filter-input input[type="checkbox"]:focus-visible + svg { + outline: 2px solid var(--color-focus-outline); + } + .tsd-checkbox-background { + fill: var(--color-accent); + } + input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark { + stroke: var(--color-text); + } + .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background { + fill: var(--color-background); + stroke: var(--color-accent); + stroke-width: 0.25rem; + } + .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark { + stroke: var(--color-accent); + } + + .settings-label { + font-weight: bold; + text-transform: uppercase; + display: inline-block; + } + + .tsd-filter-visibility .settings-label { + margin: 0.75rem 0 0.5rem 0; + } + + .tsd-theme-toggle .settings-label { + margin: 0.75rem 0.75rem 0 0; + } + + .tsd-hierarchy h4 label:hover span { + text-decoration: underline; + } + + .tsd-hierarchy { + list-style: square; + margin: 0; + } + .tsd-hierarchy-target { + font-weight: bold; + } + .tsd-hierarchy-toggle { + color: var(--color-link); + cursor: pointer; + } + + .tsd-full-hierarchy:not(:last-child) { + margin-bottom: 1em; + padding-bottom: 1em; + border-bottom: 1px solid var(--color-accent); + } + .tsd-full-hierarchy, + .tsd-full-hierarchy ul { + list-style: none; + margin: 0; + padding: 0; + } + .tsd-full-hierarchy ul { + padding-left: 1.5rem; + } + .tsd-full-hierarchy a { + padding: 0.25rem 0 !important; + font-size: 1rem; + display: inline-flex; + align-items: center; + color: var(--color-text); + } + .tsd-full-hierarchy svg[data-dropdown] { + cursor: pointer; + } + .tsd-full-hierarchy svg[data-dropdown="false"] { + transform: rotate(-90deg); + } + .tsd-full-hierarchy svg[data-dropdown="false"] ~ ul { + display: none; + } + + .tsd-panel-group.tsd-index-group { + margin-bottom: 0; + } + .tsd-index-panel .tsd-index-list { + list-style: none; + line-height: 1.333em; + margin: 0; + padding: 0.25rem 0 0 0; + overflow: hidden; + display: grid; + grid-template-columns: repeat(3, 1fr); + column-gap: 1rem; + grid-template-rows: auto; + } + @media (max-width: 1024px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(2, 1fr); + } + } + @media (max-width: 768px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(1, 1fr); + } + } + .tsd-index-panel .tsd-index-list li { + -webkit-page-break-inside: avoid; + -moz-page-break-inside: avoid; + -ms-page-break-inside: avoid; + -o-page-break-inside: avoid; + page-break-inside: avoid; + } + + .tsd-flag { + display: inline-block; + padding: 0.25em 0.4em; + border-radius: 4px; + color: var(--color-comment-tag-text); + background-color: var(--color-comment-tag); + text-indent: 0; + font-size: 75%; + line-height: 1; + font-weight: normal; + } + + .tsd-anchor { + position: relative; + top: -100px; + } + + .tsd-member { + position: relative; + } + .tsd-member .tsd-anchor + h3 { + display: flex; + align-items: center; + margin-top: 0; + margin-bottom: 0; + border-bottom: none; + } + + .tsd-navigation.settings { + margin: 0; + margin-bottom: 1rem; + } + .tsd-navigation > a, + .tsd-navigation .tsd-accordion-summary { + width: calc(100% - 0.25rem); + display: flex; + align-items: center; + } + .tsd-navigation a, + .tsd-navigation summary > span, + .tsd-page-navigation a { + display: flex; + width: calc(100% - 0.25rem); + align-items: center; + padding: 0.25rem; + color: var(--color-text); + text-decoration: none; + box-sizing: border-box; + } + .tsd-navigation a.current, + .tsd-page-navigation a.current { + background: var(--color-active-menu-item); + color: var(--color-contrast-text); + } + .tsd-navigation a:hover, + .tsd-page-navigation a:hover { + text-decoration: underline; + } + .tsd-navigation ul, + .tsd-page-navigation ul { + margin-top: 0; + margin-bottom: 0; + padding: 0; + list-style: none; + } + .tsd-navigation li, + .tsd-page-navigation li { + padding: 0; + max-width: 100%; + } + .tsd-navigation .tsd-nav-link { + display: none; + } + .tsd-nested-navigation { + margin-left: 3rem; + } + .tsd-nested-navigation > li > details { + margin-left: -1.5rem; + } + .tsd-small-nested-navigation { + margin-left: 1.5rem; + } + .tsd-small-nested-navigation > li > details { + margin-left: -1.5rem; + } + + .tsd-page-navigation-section > summary { + padding: 0.25rem; + } + .tsd-page-navigation-section > summary > svg { + margin-right: 0.25rem; + } + .tsd-page-navigation-section > div { + margin-left: 30px; + } + .tsd-page-navigation ul { + padding-left: 1.75rem; + } + + #tsd-sidebar-links a { + margin-top: 0; + margin-bottom: 0.5rem; + line-height: 1.25rem; + } + #tsd-sidebar-links a:last-of-type { + margin-bottom: 0; + } + + a.tsd-index-link { + padding: 0.25rem 0 !important; + font-size: 1rem; + line-height: 1.25rem; + display: inline-flex; + align-items: center; + color: var(--color-text); + } + .tsd-accordion-summary { + list-style-type: none; /* hide marker on non-safari */ + outline: none; /* broken on safari, so just hide it */ + display: flex; + align-items: center; + gap: 0.25rem; + box-sizing: border-box; + } + .tsd-accordion-summary::-webkit-details-marker { + display: none; /* hide marker on safari */ + } + .tsd-accordion-summary, + .tsd-accordion-summary a { + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; + + cursor: pointer; + } + .tsd-accordion-summary a { + width: calc(100% - 1.5rem); + } + .tsd-accordion-summary > * { + margin-top: 0; + margin-bottom: 0; + padding-top: 0; + padding-bottom: 0; + } + /* + * We need to be careful to target the arrow indicating whether the accordion + * is open, but not any other SVGs included in the details element. + */ + .tsd-accordion:not([open]) > .tsd-accordion-summary > svg:first-child { + transform: rotate(-90deg); + } + .tsd-index-content > :not(:first-child) { + margin-top: 0.75rem; + } + .tsd-index-summary { + margin-top: 1.5rem; + margin-bottom: 0.75rem; + display: flex; + align-content: center; + } + + .tsd-no-select { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + } + .tsd-kind-icon { + margin-right: 0.5rem; + width: 1.25rem; + height: 1.25rem; + min-width: 1.25rem; + min-height: 1.25rem; + } + .tsd-signature > .tsd-kind-icon { + margin-right: 0.8rem; + } + + .tsd-panel { + margin-bottom: 2.5rem; + } + .tsd-panel.tsd-member { + margin-bottom: 4rem; + } + .tsd-panel:empty { + display: none; + } + .tsd-panel > h1, + .tsd-panel > h2, + .tsd-panel > h3 { + margin: 1.5rem -1.5rem 0.75rem -1.5rem; + padding: 0 1.5rem 0.75rem 1.5rem; + } + .tsd-panel > h1.tsd-before-signature, + .tsd-panel > h2.tsd-before-signature, + .tsd-panel > h3.tsd-before-signature { + margin-bottom: 0; + border-bottom: none; + } + + .tsd-panel-group { + margin: 2rem 0; + } + .tsd-panel-group.tsd-index-group { + margin: 2rem 0; + } + .tsd-panel-group.tsd-index-group details { + margin: 2rem 0; + } + .tsd-panel-group > .tsd-accordion-summary { + margin-bottom: 1rem; + } + + #tsd-search[open] { + animation: fade-in var(--modal-animation-duration) ease-out forwards; + } + #tsd-search[open].closing { + animation-name: fade-out; + } + + /* Avoid setting `display` on closed dialog */ + #tsd-search[open] { + display: flex; + flex-direction: column; + padding: 1rem; + width: 32rem; + max-width: 90vw; + max-height: calc(100vh - env(keyboard-inset-height, 0px) - 25vh); + /* Anchor dialog to top */ + margin-top: 10vh; + border-radius: 6px; + will-change: max-height; + } + #tsd-search-input { + box-sizing: border-box; + width: 100%; + padding: 0 0.625rem; /* 10px */ + outline: 0; + border: 2px solid var(--color-accent); + background-color: transparent; + color: var(--color-text); + border-radius: 4px; + height: 2.5rem; + flex: 0 0 auto; + font-size: 0.875rem; + transition: border-color 0.2s, background-color 0.2s; + } + #tsd-search-input:focus-visible { + background-color: var(--color-background-active); + border-color: transparent; + color: var(--color-contrast-text); + } + #tsd-search-input::placeholder { + color: inherit; + opacity: 0.8; + } + #tsd-search-results { + margin: 0; + padding: 0; + list-style: none; + flex: 1 1 auto; + display: flex; + flex-direction: column; + overflow-y: auto; + } + #tsd-search-results:not(:empty) { + margin-top: 0.5rem; + } + #tsd-search-results > li { + background-color: var(--color-background); + line-height: 1.5; + box-sizing: border-box; + border-radius: 4px; + } + #tsd-search-results > li:nth-child(even) { + background-color: var(--color-background-secondary); + } + #tsd-search-results > li:is(:hover, [aria-selected="true"]) { + background-color: var(--color-background-active); + color: var(--color-contrast-text); + } + /* It's important that this takes full size of parent `li`, to capture a click on `li` */ + #tsd-search-results > li > a { + display: flex; + align-items: center; + padding: 0.5rem 0.25rem; + box-sizing: border-box; + width: 100%; + } + #tsd-search-results > li > a > .text { + flex: 1 1 auto; + min-width: 0; + overflow-wrap: anywhere; + } + #tsd-search-results > li > a .parent { + color: var(--color-text-aside); + } + #tsd-search-results > li > a mark { + color: inherit; + background-color: inherit; + font-weight: bold; + } + #tsd-search-status { + flex: 1; + display: grid; + place-content: center; + text-align: center; + overflow-wrap: anywhere; + } + #tsd-search-status:not(:empty) { + min-height: 6rem; + } + + .tsd-signature { + margin: 0 0 1rem 0; + padding: 1rem 0.5rem; + border: 1px solid var(--color-accent); + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + font-size: 14px; + overflow-x: auto; + } + + .tsd-signature-keyword { + color: var(--color-ts-keyword); + font-weight: normal; + } + + .tsd-signature-symbol { + color: var(--color-text-aside); + font-weight: normal; + } + + .tsd-signature-type { + font-style: italic; + font-weight: normal; + } + + .tsd-signatures { + padding: 0; + margin: 0 0 1em 0; + list-style-type: none; + } + .tsd-signatures .tsd-signature { + margin: 0; + border-color: var(--color-accent); + border-width: 1px 0; + transition: background-color 0.1s; + } + .tsd-signatures .tsd-index-signature:not(:last-child) { + margin-bottom: 1em; + } + .tsd-signatures .tsd-index-signature .tsd-signature { + border-width: 1px; + } + .tsd-description .tsd-signatures .tsd-signature { + border-width: 1px; + } + + ul.tsd-parameter-list, + ul.tsd-type-parameter-list { + list-style: square; + margin: 0; + padding-left: 20px; + } + ul.tsd-parameter-list > li.tsd-parameter-signature, + ul.tsd-type-parameter-list > li.tsd-parameter-signature { + list-style: none; + margin-left: -20px; + } + ul.tsd-parameter-list h5, + ul.tsd-type-parameter-list h5 { + font-size: 16px; + margin: 1em 0 0.5em 0; + } + .tsd-sources { + margin-top: 1rem; + font-size: 0.875em; + } + .tsd-sources a { + color: var(--color-text-aside); + text-decoration: underline; + } + .tsd-sources ul { + list-style: none; + padding: 0; + } + + .tsd-page-toolbar { + position: sticky; + z-index: 1; + top: 0; + left: 0; + width: 100%; + color: var(--color-text); + background: var(--color-background-secondary); + border-bottom: var(--dim-toolbar-border-bottom-width) + var(--color-accent) solid; + transition: transform 0.3s ease-in-out; + } + .tsd-page-toolbar a { + color: var(--color-text); + } + .tsd-toolbar-contents { + display: flex; + align-items: center; + height: var(--dim-toolbar-contents-height); + margin: 0 auto; + } + .tsd-toolbar-contents > .title { + font-weight: bold; + margin-right: auto; + } + #tsd-toolbar-links { + display: flex; + align-items: center; + gap: 1.5rem; + margin-right: 1rem; + } + + .tsd-widget { + box-sizing: border-box; + display: inline-block; + opacity: 0.8; + height: 2.5rem; + width: 2.5rem; + transition: opacity 0.1s, background-color 0.1s; + text-align: center; + cursor: pointer; + border: none; + background-color: transparent; + } + .tsd-widget:hover { + opacity: 0.9; + } + .tsd-widget:active { + opacity: 1; + background-color: var(--color-accent); + } + #tsd-toolbar-menu-trigger { + display: none; + } + + .tsd-member-summary-name { + display: inline-flex; + align-items: center; + padding: 0.25rem; + text-decoration: none; + } + + .tsd-anchor-icon { + display: inline-flex; + align-items: center; + margin-left: 0.5rem; + color: var(--color-text); + vertical-align: middle; + } + + .tsd-anchor-icon svg { + width: 1em; + height: 1em; + visibility: hidden; + } + + .tsd-member-summary-name:hover > .tsd-anchor-icon svg, + .tsd-anchor-link:hover > .tsd-anchor-icon svg, + .tsd-anchor-icon:focus-visible svg { + visibility: visible; + } + + .deprecated { + text-decoration: line-through !important; + } + + .warning { + padding: 1rem; + color: var(--color-warning-text); + background: var(--color-background-warning); + } + + .tsd-kind-project { + color: var(--color-ts-project); + } + .tsd-kind-module { + color: var(--color-ts-module); + } + .tsd-kind-namespace { + color: var(--color-ts-namespace); + } + .tsd-kind-enum { + color: var(--color-ts-enum); + } + .tsd-kind-enum-member { + color: var(--color-ts-enum-member); + } + .tsd-kind-variable { + color: var(--color-ts-variable); + } + .tsd-kind-function { + color: var(--color-ts-function); + } + .tsd-kind-class { + color: var(--color-ts-class); + } + .tsd-kind-interface { + color: var(--color-ts-interface); + } + .tsd-kind-constructor { + color: var(--color-ts-constructor); + } + .tsd-kind-property { + color: var(--color-ts-property); + } + .tsd-kind-method { + color: var(--color-ts-method); + } + .tsd-kind-reference { + color: var(--color-ts-reference); + } + .tsd-kind-call-signature { + color: var(--color-ts-call-signature); + } + .tsd-kind-index-signature { + color: var(--color-ts-index-signature); + } + .tsd-kind-constructor-signature { + color: var(--color-ts-constructor-signature); + } + .tsd-kind-parameter { + color: var(--color-ts-parameter); + } + .tsd-kind-type-parameter { + color: var(--color-ts-type-parameter); + } + .tsd-kind-accessor { + color: var(--color-ts-accessor); + } + .tsd-kind-get-signature { + color: var(--color-ts-get-signature); + } + .tsd-kind-set-signature { + color: var(--color-ts-set-signature); + } + .tsd-kind-type-alias { + color: var(--color-ts-type-alias); + } + + /* if we have a kind icon, don't color the text by kind */ + .tsd-kind-icon ~ span { + color: var(--color-text); + } + + /* mobile */ + @media (max-width: 769px) { + #tsd-toolbar-menu-trigger { + display: inline-block; + /* temporary fix to vertically align, for compatibility */ + line-height: 2.5; + } + #tsd-toolbar-links { + display: none; + } + + .container-main { + display: flex; + } + .col-content { + float: none; + max-width: 100%; + width: 100%; + } + .col-sidebar { + position: fixed !important; + overflow-y: auto; + -webkit-overflow-scrolling: touch; + z-index: 1024; + top: 0 !important; + bottom: 0 !important; + left: auto !important; + right: 0 !important; + padding: 1.5rem 1.5rem 0 0; + width: 75vw; + visibility: hidden; + background-color: var(--color-background); + transform: translate(100%, 0); + } + .col-sidebar > *:last-child { + padding-bottom: 20px; + } + .overlay { + content: ""; + display: block; + position: fixed; + z-index: 1023; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(0, 0, 0, 0.75); + visibility: hidden; + } + + .to-has-menu .overlay { + animation: fade-in 0.4s; + } + + .to-has-menu .col-sidebar { + animation: pop-in-from-right 0.4s; + } + + .from-has-menu .overlay { + animation: fade-out 0.4s; + } + + .from-has-menu .col-sidebar { + animation: pop-out-to-right 0.4s; + } + + .has-menu body { + overflow: hidden; + } + .has-menu .overlay { + visibility: visible; + } + .has-menu .col-sidebar { + visibility: visible; + transform: translate(0, 0); + display: flex; + flex-direction: column; + gap: 1.5rem; + max-height: 100vh; + padding: 1rem 2rem; + } + .has-menu .tsd-navigation { + max-height: 100%; + } + .tsd-navigation .tsd-nav-link { + display: flex; + } + } + + /* one sidebar */ + @media (min-width: 770px) { + .container-main { + display: grid; + grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); + grid-template-areas: "sidebar content"; + --dim-container-main-margin-y: 2rem; + } + + .tsd-breadcrumb { + margin-top: 0; + } + + .col-sidebar { + grid-area: sidebar; + } + .col-content { + grid-area: content; + padding: 0 1rem; + } + } + @media (min-width: 770px) and (max-width: 1399px) { + .col-sidebar { + max-height: calc( + 100vh - var(--dim-header-height) - var(--dim-footer-height) - + 2 * var(--dim-container-main-margin-y) + ); + overflow: auto; + position: sticky; + top: calc( + var(--dim-header-height) + var(--dim-container-main-margin-y) + ); + } + .site-menu { + margin-top: 1rem; + } + } + + /* two sidebars */ + @media (min-width: 1200px) { + .container-main { + grid-template-columns: + minmax(0, 1fr) minmax(0, 2.5fr) minmax( + 0, + 20rem + ); + grid-template-areas: "sidebar content toc"; + } + + .col-sidebar { + display: contents; + } + + .page-menu { + grid-area: toc; + padding-left: 1rem; + } + .site-menu { + grid-area: sidebar; + } + + .site-menu { + margin-top: 0rem; + } + + .page-menu, + .site-menu { + max-height: calc( + 100vh - var(--dim-header-height) - var(--dim-footer-height) - + 2 * var(--dim-container-main-margin-y) + ); + overflow: auto; + position: sticky; + top: calc( + var(--dim-header-height) + var(--dim-container-main-margin-y) + ); + } + } +} diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AbstractKeylessAccount.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AbstractKeylessAccount.html new file mode 100644 index 000000000..1647e8089 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AbstractKeylessAccount.html @@ -0,0 +1,99 @@ +AbstractKeylessAccount | @aptos-labs/ts-sdk - v7.0.0
@aptos-labs/ts-sdk - v7.0.0
    Preparing search index...

    Class AbstractKeylessAccountAbstract

    Account implementation for the Keyless authentication scheme. This abstract class is used for standard Keyless Accounts +and Federated Keyless Accounts.

    +

    Hierarchy (View Summary)

    Implements

    Index

    Implementation - Account (On-Chain Model)

    accountAddress: AccountAddress

    Account address associated with the account

    +
    aud: string

    The value of the 'aud' claim on the JWT, also known as client ID. This is the identifier for the dApp's +OIDC registration with the identity provider.

    +
    ephemeralKeyPair: EphemeralKeyPair

    The EphemeralKeyPair used to generate sign.

    +
    jwt: string

    The JWT token used to derive the account

    +
    pepper: Uint8Array

    A value contains 31 bytes of entropy that preserves privacy of the account. Typically fetched from a pepper provider.

    +
    proof: ZeroKnowledgeSig | undefined

    The zero knowledge signature (if ready) which contains the proof used to validate the EphemeralKeyPair.

    +
    proofOrPromise: ZeroKnowledgeSig | Promise<ZeroKnowledgeSig>

    The proof of the EphemeralKeyPair or a promise that provides the proof. This is used to allow for awaiting on +fetching the proof.

    +

    The KeylessPublicKey associated with the account

    +
    signingScheme: SigningScheme = SigningScheme.SingleKey

    Signing scheme used to sign transactions

    +
    uidKey: string

    The claim on the JWT to identify a user. This is typically 'sub' or 'email'.

    +
    uidVal: string

    The value of the uidKey claim on the JWT. This intended to be a stable user identifier.

    +
    • Checks if the proof is expired. If so the account must be re-derived with a new EphemeralKeyPair +and JWT token.

      +

      Returns boolean

      boolean

      +
    • Verify the given message and signature with the public key. It fetches any on chain state if needed for verification.

      +

      Parameters

      • args: {
            aptosConfig: AptosConfig;
            message: HexInput;
            options?: { throwErrorWithReason?: boolean };
            signature: KeylessSignature;
        }

        The arguments for verifying the signature.

        +
        • aptosConfig: AptosConfig

          The configuration object for connecting to the Aptos network

          +
        • message: HexInput

          Raw message data in HexInput format.

          +
        • Optionaloptions?: { throwErrorWithReason?: boolean }
        • signature: KeylessSignature

          Signed message signature.

          +

      Returns Promise<boolean>

      A boolean indicating whether the signature is valid.

      +

    Implementation - BCS

    • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

      +

      Returns Uint8Array

      the BCS representation of the Serializable instance as a byte buffer.

      +
    • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

      +

      Returns Hex

      A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

      +

    Methods

    • Returns the hex string representation of the Serializable value with the 0x prefix.

      +

      Returns string

      the hex formatas a string prefixed by 0x.

      +

    Properties

    verificationKeyHash?: Uint8Array<ArrayBufferLike>

    The hash of the verification key used to verify the proof. This is optional and can be used to check verifying key +rotations which may invalidate the proof.

    +
    PEPPER_LENGTH: number = 31
    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AbstractMultiKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AbstractMultiKey.html new file mode 100644 index 000000000..d66577a19 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AbstractMultiKey.html @@ -0,0 +1,42 @@ +AbstractMultiKey | @aptos-labs/ts-sdk - v7.0.0
    @aptos-labs/ts-sdk - v7.0.0
      Preparing search index...

      Class AbstractMultiKeyAbstract

      An abstract representation of an account public key.

      +

      Provides a common interface for deriving an authentication key.

      +

      Hierarchy (View Summary)

      Index

      Implementation - BCS

      • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

        +

        Returns Uint8Array

        the BCS representation of the Serializable instance as a byte buffer.

        +
      • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

        +

        Returns Hex

        A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

        +

      Implementation - Serialization

      • Create a bitmap that holds the mapping from the original public keys +to the signatures passed in

        +

        Parameters

        • args: { bits: number[] }
          • bits: number[]

            array of the index mapping to the matching public keys

            +

        Returns Uint8Array

        Uint8array bit map

        +
      • Get the index of the provided public key.

        +

        This function retrieves the index of a specified public key within the MultiKey. +If the public key does not exist, it throws an error.

        +

        Parameters

        • publicKey: PublicKey

          The public key to find the index for.

          +

        Returns number

        The corresponding index of the public key, if it exists.

        +

        Error - If the public key is not found in the MultiKey.

        +

      Constructors

      Methods

      Properties

      publicKeys: PublicKey[]
      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AbstractPublicKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AbstractPublicKey.html new file mode 100644 index 000000000..1cb3ce135 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AbstractPublicKey.html @@ -0,0 +1,29 @@ +AbstractPublicKey | @aptos-labs/ts-sdk - v7.0.0
      @aptos-labs/ts-sdk - v7.0.0
        Preparing search index...

        Class AbstractPublicKey

        An abstract representation of an account public key.

        +

        Provides a common interface for deriving an authentication key.

        +

        Hierarchy (View Summary)

        Index

        Implementation - BCS

        Implementation - Serialization

        Constructors

        Methods

        Properties

        Implementation - BCS

        • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

          +

          Returns Uint8Array

          the BCS representation of the Serializable instance as a byte buffer.

          +
        • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

          +

          Returns Hex

          A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

          +

        Implementation - Serialization

        Constructors

        Methods

        Properties

        accountAddress: AccountAddress
        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AbstractSignature.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AbstractSignature.html new file mode 100644 index 000000000..b37e523c6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AbstractSignature.html @@ -0,0 +1,25 @@ +AbstractSignature | @aptos-labs/ts-sdk - v7.0.0
        @aptos-labs/ts-sdk - v7.0.0
          Preparing search index...

          Class AbstractSignature

          An abstract representation of a crypto signature, +associated with a specific signature scheme, e.g., Ed25519 or Secp256k1.

          +

          This class represents the product of signing a message directly from a +PrivateKey and can be verified against a CryptoPublicKey.

          +

          Hierarchy (View Summary)

          Index

          Implementation - BCS

          Implementation - Serialization

          Constructors

          Methods

          Properties

          Implementation - BCS

          • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

            +

            Returns Uint8Array

            the BCS representation of the Serializable instance as a byte buffer.

            +
          • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

            +

            Returns Hex

            A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

            +

          Implementation - Serialization

          Constructors

          Methods

          Properties

          value: Uint8Array
          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AbstractedAccount.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AbstractedAccount.html new file mode 100644 index 000000000..97a5f24f5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AbstractedAccount.html @@ -0,0 +1,131 @@ +AbstractedAccount | @aptos-labs/ts-sdk - v7.0.0
          @aptos-labs/ts-sdk - v7.0.0
            Preparing search index...

            Class AbstractedAccount

            Abstract class representing a generic Aptos account.

            +

            This class serves as a single entry point for account generation, allowing accounts to be created +either through Account.generate() or Account.fromDerivationPath. Although it is defined as an +abstract class, it should be treated as an interface and enforced using the implements keyword.

            +

            Note: Generating an account instance does not create the account on-chain.

            +

            Hierarchy (View Summary)

            Index

            Implementation - Account (On-Chain Model)

            accountAddress: AccountAddress

            Account address associated with the account

            +

            Public key associated with the account

            +
            sign: (message: HexInput) => AbstractSignature

            Sign the given message using the available signing capabilities.

            +

            Type Declaration

            signingScheme: SingleKey = SigningScheme.SingleKey

            Signing scheme used to sign transactions

            +
            • Verify the given message and signature with the public key. +This function helps ensure the integrity and authenticity of a message by validating its signature.

              +

              Parameters

              Returns boolean

              A boolean indicating whether the signature is valid.

              +
            • Verify the given message and signature with the public key. It fetches any on chain state if needed for verification.

              +

              Parameters

              • args: { aptosConfig: AptosConfig; message: HexInput; signature: Signature }

                The arguments for verifying the signature.

                +
                • aptosConfig: AptosConfig

                  The configuration object for connecting to the Aptos network

                  +
                • message: HexInput

                  Raw message data in HexInput format.

                  +
                • signature: Signature

                  Signed message signature.

                  +

              Returns Promise<boolean>

              A boolean indicating whether the signature is valid.

              +

            Constructors

            Methods

            • Update the signer function for the account. This can be done after asynchronous operations are complete +to update the context of the signer function.

              +

              Parameters

              • signer: (digest: HexInput) => HexInput

                The new signer function to use for the account.

                +

              Returns void

            Properties

            authenticationFunction: string
            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Account.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Account.html new file mode 100644 index 000000000..9c09fe456 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Account.html @@ -0,0 +1,120 @@ +Account | @aptos-labs/ts-sdk - v7.0.0
            @aptos-labs/ts-sdk - v7.0.0
              Preparing search index...

              Class AccountAbstract

              Abstract class representing a generic Aptos account.

              +

              This class serves as a single entry point for account generation, allowing accounts to be created +either through Account.generate() or Account.fromDerivationPath. Although it is defined as an +abstract class, it should be treated as an interface and enforced using the implements keyword.

              +

              Note: Generating an account instance does not create the account on-chain.

              +

              Hierarchy (View Summary)

              Implemented by

              Index

              Implementation - Account (On-Chain Model)

              accountAddress: AccountAddress

              Account address associated with the account

              +
              publicKey: AccountPublicKey

              Public key associated with the account

              +
              signingScheme: SigningScheme

              Signing scheme used to sign transactions

              +
              • Verify the given message and signature with the public key. +This function helps ensure the integrity and authenticity of a message by validating its signature.

                +

                Parameters

                Returns boolean

                A boolean indicating whether the signature is valid.

                +
              • Verify the given message and signature with the public key. It fetches any on chain state if needed for verification.

                +

                Parameters

                • args: { aptosConfig: AptosConfig; message: HexInput; signature: Signature }

                  The arguments for verifying the signature.

                  +
                  • aptosConfig: AptosConfig

                    The configuration object for connecting to the Aptos network

                    +
                  • message: HexInput

                    Raw message data in HexInput format.

                    +
                  • signature: Signature

                    Signed message signature.

                    +

                Returns Promise<boolean>

                A boolean indicating whether the signature is valid.

                +
              • Generates a new account based on the specified signing scheme and legacy option. +This function allows you to create an account with either the Ed25519 signing scheme or a different scheme as specified.

                +

                Parameters

                • Optionalargs: GenerateEd25519AccountArgs

                  The arguments for generating the account.

                  +

                  Arguments for generating an Ed25519 account, specifying the signing scheme and legacy option.

                  +
                  • Optionallegacy?: true
                  • Optionalscheme?: Ed25519

                Returns Ed25519Account

              • Generates a new account based on the specified signing scheme and legacy option. +This function allows you to create an account with either the Ed25519 signing scheme or a different scheme as specified.

                +

                Parameters

                • args: GenerateEd25519SingleKeyAccountArgs

                  The arguments for generating the account.

                  +

                  Arguments for generating a SingleKeyAccount with an underlying Ed25519PrivateKey. +The legacy argument must be set to false to ensure an Ed25519SingleKeyAccount is returned.

                  +
                  • legacy: false
                  • Optionalscheme?: Ed25519

                Returns SingleKeyAccount

              • Generates a new account based on the specified signing scheme and legacy option. +This function allows you to create an account with either the Ed25519 signing scheme or a different scheme as specified.

                +

                Parameters

                • args: GenerateSingleKeyAccountArgs

                  The arguments for generating the account.

                  +

                  Arguments for generating a SingleKeyAccount using a supported private key other than Ed25519PrivateKey. +The legacy argument is optional and defaults to false, and cannot be set to true.

                  +

                Returns SingleKeyAccount

              • Generates a new account based on the specified signing scheme and legacy option. +This function allows you to create an account with either the Ed25519 signing scheme or a different scheme as specified.

                +

                Parameters

                • args: GenerateAccountArgs

                  The arguments for generating the account.

                  +

                  Arguments for generating an opaque Account when the input signature scheme is unknown at compile time.

                  +

                Returns Account

              Constructors

              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAbstractionMessage.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAbstractionMessage.html new file mode 100644 index 000000000..087eca86c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAbstractionMessage.html @@ -0,0 +1,23 @@ +AccountAbstractionMessage | @aptos-labs/ts-sdk - v7.0.0
              @aptos-labs/ts-sdk - v7.0.0
                Preparing search index...

                Class AccountAbstractionMessage

                Represents an account abstraction message that contains the original signing message and the function info.

                +

                The original signing message.

                +

                The function info of the authentication function.

                +

                Hierarchy (View Summary)

                Index

                Implementation - BCS

                • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                  +

                  Returns Uint8Array

                  the BCS representation of the Serializable instance as a byte buffer.

                  +
                • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                  +

                  Returns Hex

                  A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                  +

                Constructors

                Methods

                • Returns the hex string representation of the Serializable value with the 0x prefix.

                  +

                  Returns string

                  the hex formatas a string prefixed by 0x.

                  +

                Properties

                functionInfo: string
                originalSigningMessage: Hex
                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAddress.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAddress.html new file mode 100644 index 000000000..ab6868707 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAddress.html @@ -0,0 +1,169 @@ +AccountAddress | @aptos-labs/ts-sdk - v7.0.0
                @aptos-labs/ts-sdk - v7.0.0
                  Preparing search index...

                  Class AccountAddress

                  NOTE: Only use this class for account addresses. For other hex data, e.g. transaction +hashes, use the Hex class.

                  +

                  AccountAddress is used for working with account addresses. Account addresses, when +represented as a string, generally look like these examples:

                  +
                    +
                  • 0x1
                  • +
                  • 0xaa86fe99004361f747f91342ca13c426ca0cccb0c1217677180c9493bad6ef0c
                  • +
                  +

                  Proper formatting and parsing of account addresses is defined by AIP-40. +To learn more about the standard, read the AIP here: +https://github.com/aptos-foundation/AIPs/blob/main/aips/aip-40.md.

                  +

                  The comments in this class make frequent reference to the LONG and SHORT formats, +as well as "special" addresses. To learn what these refer to see AIP-40.

                  +

                  Hierarchy (View Summary)

                  Implements

                  Index

                  Implementation - BCS

                  • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                    +

                    Returns Hex

                    A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                    +

                  Implementation - Serialization

                  • Creates an instance of AccountAddress from a Uint8Array.

                    +

                    This function ensures that the input data is exactly 32 bytes long, which is required for a valid account address.

                    +

                    Parameters

                    • input: Uint8Array

                      A Uint8Array representing an account address.

                      +

                    Returns AccountAddress

                    ParsingError if the input length is not equal to 32 bytes.

                    +
                  data: Uint8Array

                  This is the internal representation of an account address.

                  +
                  LENGTH: number = 32

                  The number of bytes that make up an account address.

                  +
                  LONG_STRING_LENGTH: number = 64

                  The length of an address string in LONG form without a leading 0x.

                  +
                  • Determine if two AccountAddresses are equal based on their underlying byte data.

                    +

                    Parameters

                    Returns boolean

                    true if the AccountAddresses are equal, false if not.

                    +
                  • Serialize the AccountAddress to a Serializer instance's data buffer.

                    +

                    Parameters

                    • serializer: Serializer

                      The serializer to serialize the AccountAddress to.

                      +

                    Returns void

                    void

                    +
                    const serializer = new Serializer();
                    const address = AccountAddress.fromString("0x1");
                    address.serialize(serializer);
                    const bytes = serializer.toUint8Array();
                    // `bytes` is now the BCS-serialized address. +
                    + +
                  • Serializes the current instance into a byte sequence suitable for entry functions. +This allows for the proper encoding of data when interacting with entry functions in the blockchain. +Uses the optimized serializeAsBytes method to reduce allocations.

                    +

                    Parameters

                    • serializer: Serializer

                      The serializer instance used to convert the data into bytes.

                      +

                    Returns void

                  • Serializes the current instance for use in a script function by encoding it into a byte sequence. +This process involves serializing the variant index and the instance data, making it suitable for transmission.

                    +

                    Parameters

                    • serializer: Serializer

                      The serializer instance used to perform the serialization.

                      +

                    Returns void

                  • Convert the account address to a string in LONG format, which is always 0x followed by 64 hex characters.

                    +

                    NOTE: Prefer to use toString where possible, as it formats special addresses using the SHORT form (no leading 0s).

                    +

                    Returns `0x${string}`

                    AccountAddress as a string in LONG form.

                    +
                  • Returns the account address as a string in LONG form without a leading 0x. +This function will include leading zeroes and will produce a string of 64 hex characters.

                    +

                    NOTE: Prefer to use toString where possible, as it formats special addresses using the SHORT form (no leading 0s).

                    +

                    Returns string

                    The account address in LONG form.

                    +
                  • Convert the account address to a string in SHORT format, which is 0x followed by the shortest +possible representation (no leading zeros).

                    +

                    Returns `0x${string}`

                    AccountAddress as a string in SHORT form.

                    +
                  • Returns a lossless short string representation of the address by trimming leading zeros. +If the address consists of all zeros, returns "0".

                    +

                    Returns string

                    A string representation of the address without leading zeros

                    +
                  • Return the AccountAddress as a string conforming to AIP-40 but without the leading 0x.

                    +

                    NOTE: Prefer to use toString where possible.

                    +

                    Returns string

                    AccountAddress as a string without the leading 0x.

                    +
                  • Get the inner data as a Uint8Array. +The inner data is already a Uint8Array, so no conversion takes place.

                    +

                    Returns Uint8Array

                    Hex data as Uint8Array

                    +
                  • Deserialize an AccountAddress from the byte buffer in a Deserializer instance. +This function allows you to convert a byte representation of an AccountAddress into an instance of AccountAddress.

                    +

                    Parameters

                    • deserializer: Deserializer

                      The deserializer to deserialize the AccountAddress from.

                      +

                    Returns AccountAddress

                    An instance of AccountAddress.

                    +
                    const bytes = hexToBytes("0x0102030405060708091011121314151617181920212223242526272829303132");
                    const deserializer = new Deserializer(bytes);
                    const address = AccountAddress.deserialize(deserializer);
                    // `address` is now an instance of AccountAddress. +
                    + +
                  • Convenience method for creating an AccountAddress from various input types. +This function accepts a string, Uint8Array, or an existing AccountAddress instance and returns the corresponding +AccountAddress.

                    +

                    Parameters

                    • input: AccountAddressInput

                      The input to convert into an AccountAddress. This can be a string representation of an address, a Uint8Array, +or an existing AccountAddress.

                      +
                    • __namedParameters: { maxMissingChars?: number } = {}

                    Returns AccountAddress

                  • NOTE: This function has relaxed parsing behavior. For strict behavior, please use +the fromStringStrict function. Where possible use fromStringStrict rather than this +function, fromString.

                    +

                    Creates an instance of AccountAddress from a hex string.

                    +

                    This function allows all formats defined by AIP-40. In short this means the +following formats are accepted:

                    +
                      +
                    • LONG, with or without leading 0x
                    • +
                    • SHORT*, with or without leading 0x
                    • +
                    +

                    Where:

                    +
                      +
                    • LONG is 64 hex characters.
                    • +
                    • SHORT* is 1 to 63 hex characters inclusive. The address can have missing values up to maxMissingChars before it is padded.
                    • +
                    • Padding zeroes are allowed, e.g. 0x0123 is valid.
                    • +
                    +

                    Learn more about the different address formats by reading AIP-40: +https://github.com/aptos-foundation/AIPs/blob/main/aips/aip-40.md.

                    +

                    Parameters

                    • input: string

                      A hex string representing an account address.

                      +
                    • __namedParameters: { maxMissingChars?: number } = {}

                    Returns AccountAddress

                    An instance of AccountAddress.

                    +

                    ParsingError if the hex string is too short, too long, or contains invalid characters.

                    +
                  • NOTE: This function has strict parsing behavior. For relaxed behavior, please use +the fromString function.

                    +

                    Creates an instance of AccountAddress from a hex string.

                    +

                    This function allows only the strictest formats defined by AIP-40. In short this +means only the following formats are accepted:

                    +
                      +
                    • LONG
                    • +
                    • SHORT for special addresses
                    • +
                    +

                    Where:

                    +
                      +
                    • LONG is defined as 0x + 64 hex characters.
                    • +
                    • SHORT for special addresses is 0x0 to 0xf inclusive without padding zeroes.
                    • +
                    +

                    This means the following are not accepted:

                    +
                      +
                    • SHORT for non-special addresses.
                    • +
                    • Any address without a leading 0x.
                    • +
                    +

                    Parameters

                    • input: string

                      A hex string representing an account address.

                      +

                    Returns AccountAddress

                    An instance of AccountAddress.

                    +

                    If the hex string does not start with 0x or is not in a valid format.

                    +

                    This function has strict parsing behavior. For relaxed behavior, please use the fromString function.

                    +

                    AIP-40 documentation for more details on address formats: +https://github.com/aptos-foundation/AIPs/blob/main/aips/aip-40.md.

                    +
                  • Check if the provided input is a valid AccountAddress.

                    +

                    Parameters

                    • args: { input: AccountAddressInput; strict?: boolean }

                      The arguments for validation.

                      +
                      • input: AccountAddressInput

                        A hex string representing an account address.

                        +
                      • Optionalstrict?: boolean

                        If true, use strict parsing behavior; if false, use relaxed parsing behavior.

                        +

                    Returns ParsingResult<AddressInvalidReason>

                    An object indicating whether the address is valid. If valid, valid = true; if not, valid = false with additional details. +If the address is invalid, invalidReason will explain why it is invalid, and invalidReasonMessage will provide the error message.

                    +

                  Properties

                  FOUR: AccountAddress = ...
                  ONE: AccountAddress = ...
                  THREE: AccountAddress = ...
                  TWO: AccountAddress = ...
                  ZERO: AccountAddress = ...
                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticator.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticator.html new file mode 100644 index 000000000..35cb7bf97 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticator.html @@ -0,0 +1,36 @@ +AccountAuthenticator | @aptos-labs/ts-sdk - v7.0.0
                  @aptos-labs/ts-sdk - v7.0.0
                    Preparing search index...

                    Class AccountAuthenticatorAbstract

                    Represents an account authenticator that can handle multiple authentication variants. +This class serves as a base for different types of account authenticators, allowing for serialization +and deserialization of various authenticator types.

                    +

                    Hierarchy (View Summary)

                    Index

                    Implementation - BCS

                    Implementation - Transactions

                    Constructors

                    Methods

                    Implementation - BCS

                    • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                      +

                      Returns Uint8Array

                      the BCS representation of the Serializable instance as a byte buffer.

                      +
                    • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                      +

                      Returns Hex

                      A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                      +

                    Implementation - Transactions

                    Constructors

                    Methods

                    • Returns the hex string representation of the Serializable value with the 0x prefix.

                      +

                      Returns string

                      the hex formatas a string prefixed by 0x.

                      +
                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticatorAbstraction.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticatorAbstraction.html new file mode 100644 index 000000000..4733de312 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticatorAbstraction.html @@ -0,0 +1,44 @@ +AccountAuthenticatorAbstraction | @aptos-labs/ts-sdk - v7.0.0
                    @aptos-labs/ts-sdk - v7.0.0
                      Preparing search index...

                      Class AccountAuthenticatorAbstraction

                      Represents an account authenticator that supports abstract authentication.

                      +

                      The function info of the authentication function.

                      +

                      The digest of the signing message.

                      +

                      The signature of the authentication function.

                      +

                      optional. The account identity for DAA.

                      +

                      Hierarchy (View Summary)

                      Index

                      Implementation - BCS

                      • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                        +

                        Returns Uint8Array

                        the BCS representation of the Serializable instance as a byte buffer.

                        +
                      • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                        +

                        Returns Hex

                        A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                        +

                      Implementation - Transactions

                      Constructors

                      Methods

                      Properties

                      abstractionSignature: Uint8Array
                      accountIdentity?: Uint8Array<ArrayBufferLike>

                      DAA, which is extended of the AA module, requires an account identity

                      +
                      functionInfo: string
                      signingMessageDigest: Hex
                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticatorEd25519.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticatorEd25519.html new file mode 100644 index 000000000..c4c06f05d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticatorEd25519.html @@ -0,0 +1,49 @@ +AccountAuthenticatorEd25519 | @aptos-labs/ts-sdk - v7.0.0
                      @aptos-labs/ts-sdk - v7.0.0
                        Preparing search index...

                        Class AccountAuthenticatorEd25519

                        Represents an Ed25519 transaction authenticator for multi-signer transactions. +This class encapsulates the account's Ed25519 public key and signature.

                        +

                        The Ed25519 public key associated with the account.

                        +

                        The Ed25519 signature for the account.

                        +

                        Hierarchy (View Summary)

                        Index

                        Implementation - BCS

                        • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                          +

                          Returns Uint8Array

                          the BCS representation of the Serializable instance as a byte buffer.

                          +
                        • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                          +

                          Returns Hex

                          A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                          +

                        Implementation - Transactions

                        Methods

                        Properties

                        public_key: Ed25519PublicKey
                        signature: Ed25519Signature
                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticatorMultiEd25519.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticatorMultiEd25519.html new file mode 100644 index 000000000..c97abee47 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticatorMultiEd25519.html @@ -0,0 +1,39 @@ +AccountAuthenticatorMultiEd25519 | @aptos-labs/ts-sdk - v7.0.0
                        @aptos-labs/ts-sdk - v7.0.0
                          Preparing search index...

                          Class AccountAuthenticatorMultiEd25519

                          Represents a transaction authenticator for Multi Ed25519, designed for multi-signer transactions.

                          +

                          The MultiEd25519 public key of the account.

                          +

                          The MultiEd25519 signature of the account.

                          +

                          Hierarchy (View Summary)

                          Index

                          Implementation - BCS

                          Implementation - Transactions

                          Constructors

                          Methods

                          Properties

                          Implementation - BCS

                          • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                            +

                            Returns Uint8Array

                            the BCS representation of the Serializable instance as a byte buffer.

                            +
                          • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                            +

                            Returns Hex

                            A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                            +

                          Implementation - Transactions

                          Constructors

                          Methods

                          Properties

                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticatorMultiKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticatorMultiKey.html new file mode 100644 index 000000000..eae0a21f8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticatorMultiKey.html @@ -0,0 +1,39 @@ +AccountAuthenticatorMultiKey | @aptos-labs/ts-sdk - v7.0.0
                          @aptos-labs/ts-sdk - v7.0.0
                            Preparing search index...

                            Class AccountAuthenticatorMultiKey

                            Represents an account authenticator that supports multiple keys and signatures for multi-signature scenarios.

                            +

                            The public keys used for authentication.

                            +

                            The signatures corresponding to the public keys.

                            +

                            Hierarchy (View Summary)

                            Index

                            Implementation - BCS

                            Implementation - Transactions

                            Constructors

                            Methods

                            Properties

                            Implementation - BCS

                            • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                              +

                              Returns Uint8Array

                              the BCS representation of the Serializable instance as a byte buffer.

                              +
                            • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                              +

                              Returns Hex

                              A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                              +

                            Implementation - Transactions

                            Constructors

                            Methods

                            Properties

                            public_keys: MultiKey
                            signatures: MultiKeySignature
                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticatorNoAccountAuthenticator.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticatorNoAccountAuthenticator.html new file mode 100644 index 000000000..b9e16f4b8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticatorNoAccountAuthenticator.html @@ -0,0 +1,37 @@ +AccountAuthenticatorNoAccountAuthenticator | @aptos-labs/ts-sdk - v7.0.0
                            @aptos-labs/ts-sdk - v7.0.0
                              Preparing search index...

                              Class AccountAuthenticatorNoAccountAuthenticator

                              AccountAuthenticatorNoAccountAuthenticator for no account authenticator +It represents the absence of a public key for transaction simulation. +It allows skipping the public/auth key check during the simulation.

                              +

                              Hierarchy (View Summary)

                              Index

                              Implementation - BCS

                              Implementation - Transactions

                              Constructors

                              Methods

                              Implementation - BCS

                              • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                +

                                Returns Uint8Array

                                the BCS representation of the Serializable instance as a byte buffer.

                                +
                              • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                +

                                Returns Hex

                                A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                +

                              Implementation - Transactions

                              Constructors

                              Methods

                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticatorSingleKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticatorSingleKey.html new file mode 100644 index 000000000..191702065 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountAuthenticatorSingleKey.html @@ -0,0 +1,40 @@ +AccountAuthenticatorSingleKey | @aptos-labs/ts-sdk - v7.0.0
                              @aptos-labs/ts-sdk - v7.0.0
                                Preparing search index...

                                Class AccountAuthenticatorSingleKey

                                Represents an account authenticator that utilizes a single key for signing. +This class is designed to handle authentication using a public key and its corresponding signature.

                                +

                                The public key used for authentication.

                                +

                                The signature associated with the public key.

                                +

                                Hierarchy (View Summary)

                                Index

                                Implementation - BCS

                                Implementation - Transactions

                                Constructors

                                Methods

                                Properties

                                Implementation - BCS

                                • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                  +

                                  Returns Uint8Array

                                  the BCS representation of the Serializable instance as a byte buffer.

                                  +
                                • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                  +

                                  Returns Hex

                                  A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                  +

                                Implementation - Transactions

                                Constructors

                                Methods

                                Properties

                                public_key: AnyPublicKey
                                signature: AnySignature
                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountPublicKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountPublicKey.html new file mode 100644 index 000000000..6ed3dd4c5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountPublicKey.html @@ -0,0 +1,28 @@ +AccountPublicKey | @aptos-labs/ts-sdk - v7.0.0
                                @aptos-labs/ts-sdk - v7.0.0
                                  Preparing search index...

                                  Class AccountPublicKeyAbstract

                                  An abstract representation of an account public key.

                                  +

                                  Provides a common interface for deriving an authentication key.

                                  +

                                  Hierarchy (View Summary)

                                  Index

                                  Implementation - BCS

                                  Implementation - Serialization

                                  Constructors

                                  Methods

                                  Implementation - BCS

                                  • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                    +

                                    Returns Uint8Array

                                    the BCS representation of the Serializable instance as a byte buffer.

                                    +
                                  • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                    +

                                    Returns Hex

                                    A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                    +

                                  Implementation - Serialization

                                  Constructors

                                  Methods

                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountSequenceNumber.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountSequenceNumber.html new file mode 100644 index 000000000..7f55aeccb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AccountSequenceNumber.html @@ -0,0 +1,47 @@ +AccountSequenceNumber | @aptos-labs/ts-sdk - v7.0.0
                                  @aptos-labs/ts-sdk - v7.0.0
                                    Preparing search index...

                                    Class AccountSequenceNumber

                                    Represents an account's sequence number management for transaction handling on the Aptos blockchain. +This class provides methods to retrieve the next available sequence number, synchronize with the on-chain sequence number, +and manage local sequence numbers while ensuring thread safety.

                                    +

                                    The configuration settings for Aptos.

                                    +

                                    The account associated with the sequence number.

                                    +

                                    The maximum time to wait for a transaction to commit.

                                    +

                                    The maximum number of transactions that can be in flight at once.

                                    +

                                    The time to wait before retrying to get the sequence number.

                                    +
                                    Index

                                    Implementation - Transactions

                                    • Creates an instance of the class with the specified configuration and account details. +This constructor initializes the necessary parameters for managing Aptos transactions.

                                      +

                                      Parameters

                                      • aptosConfig: AptosConfig

                                        The configuration settings for Aptos.

                                        +
                                      • account: Account

                                        The account associated with the Aptos transactions.

                                        +
                                      • maxWaitTime: number

                                        The maximum time to wait for a transaction to be processed, in milliseconds.

                                        +
                                      • maximumInFlight: number

                                        The maximum number of transactions that can be in flight at the same time.

                                        +
                                      • sleepTime: number

                                        The time to sleep between transaction checks, in milliseconds.

                                        +

                                      Returns AccountSequenceNumber

                                    lock: boolean = false

                                    We want to guarantee that we preserve ordering of workers to requests.

                                    +

                                    lock is used to try to prevent multiple coroutines from accessing a shared resource at the same time, +which can result in race conditions and data inconsistency. +This code actually doesn't do it though, since we aren't giving out a slot, it is still somewhat a race condition.

                                    +

                                    The ideal solution is likely that each thread grabs the next number from an incremental integer. +When they complete, they increment that number and that entity is able to enter the lock. +That would guarantee ordering.

                                    +
                                    • Initializes this account with the sequence number on chain.

                                      +

                                      Returns Promise<void>

                                      A promise that resolves when the account has been initialized.

                                      +

                                      Throws an error if the account information cannot be retrieved.

                                      +
                                    • Returns the next available sequence number for this account. +This function ensures that the sequence number is updated and synchronized, handling potential delays in transaction commits.

                                      +

                                      Returns Promise<bigint | null>

                                      The next available sequence number.

                                      +
                                    • Synchronizes the local sequence number with the sequence number on-chain for the specified account. +This function polls the network until all submitted transactions have either been committed or until the maximum wait time has elapsed.

                                      +

                                      Returns Promise<void>

                                      Throws an error if there is an issue synchronizing the account sequence number with the one on-chain.

                                      +

                                    Properties

                                    account: Account
                                    aptosConfig: AptosConfig
                                    currentNumber: bigint | null = null
                                    lastUncommintedNumber: bigint | null = null
                                    maximumInFlight: number
                                    maxWaitTime: number
                                    sleepTime: number
                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AnyPublicKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AnyPublicKey.html new file mode 100644 index 000000000..04ab4c2d8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AnyPublicKey.html @@ -0,0 +1,74 @@ +AnyPublicKey | @aptos-labs/ts-sdk - v7.0.0
                                    @aptos-labs/ts-sdk - v7.0.0
                                      Preparing search index...

                                      Class AnyPublicKey

                                      Represents any public key supported by Aptos.

                                      +

                                      Since AIP-55 Aptos supports +Legacy and Unified authentication keys.

                                      +

                                      Any unified authentication key is represented in the SDK as AnyPublicKey.

                                      +

                                      Hierarchy (View Summary)

                                      Index

                                      Implementation - BCS

                                      • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                        +

                                        Returns Uint8Array

                                        the BCS representation of the Serializable instance as a byte buffer.

                                        +
                                      • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                        +

                                        Returns Hex

                                        A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                        +

                                      Implementation - Serialization

                                      publicKey: PublicKey

                                      Reference to the inner public key

                                      +

                                      Index of the underlying enum variant

                                      +
                                      • Determines if the current public key is an instance of Ed25519PublicKey.

                                        +

                                        Returns boolean

                                        use publicKey instanceof Ed25519PublicKey instead.

                                        +
                                      • Checks if the public key is an instance of Secp256k1PublicKey.

                                        +

                                        Returns boolean

                                        use publicKey instanceof Secp256k1PublicKey instead.

                                        +
                                      • Get the signature in bytes (Uint8Array).

                                        +

                                        This function is a warning that it will soon return the underlying signature bytes directly. +Use AnySignature.bcsToBytes() instead.

                                        +

                                        Returns Uint8Array

                                        Uint8Array representation of the signature.

                                        +
                                      • Verifies the provided signature against the given message. +This function helps ensure the integrity and authenticity of the message by confirming that the signature is valid.

                                        +

                                        Parameters

                                        • args: { message: HexInput; signature: AnySignature }

                                          The arguments for signature verification.

                                          +
                                          • message: HexInput

                                            The message that was signed.

                                            +
                                          • signature: AnySignature

                                            The signature to verify, which must be an instance of AnySignature.

                                            +

                                        Returns boolean

                                        A boolean indicating whether the signature is valid for the given message.

                                        +
                                      • Verifies the provided signature against the given message. +This function helps ensure the integrity and authenticity of the message by confirming that the signature is valid.

                                        +

                                        Parameters

                                        • args: {
                                              aptosConfig: AptosConfig;
                                              message: HexInput;
                                              options?: { throwErrorWithReason?: boolean };
                                              signature: Signature;
                                          }

                                          The arguments for signature verification.

                                          +
                                          • aptosConfig: AptosConfig

                                            The configuration object for connecting to the Aptos network

                                            +
                                          • message: HexInput

                                            The message that was signed.

                                            +
                                          • Optionaloptions?: { throwErrorWithReason?: boolean }
                                          • signature: Signature

                                            The signature to verify, which must be an instance of AnySignature.

                                            +

                                        Returns Promise<boolean>

                                        A boolean indicating whether the signature is valid for the given message.

                                        +
                                      • Deserializes an AnySignature from the provided deserializer. +This function helps in reconstructing the AnySignature object from its serialized form, allowing for further processing or validation.

                                        +

                                        Parameters

                                        • deserializer: Deserializer

                                          The deserializer instance used to read the serialized data.

                                          +

                                        Returns AnyPublicKey

                                      Methods

                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AnySignature.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AnySignature.html new file mode 100644 index 000000000..34dad1278 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AnySignature.html @@ -0,0 +1,25 @@ +AnySignature | @aptos-labs/ts-sdk - v7.0.0
                                      @aptos-labs/ts-sdk - v7.0.0
                                        Preparing search index...

                                        Class AnySignature

                                        Represents a signature that utilizes the SingleKey authentication scheme. +This class is designed to encapsulate various types of signatures, which can +only be generated by a SingleKeySigner due to the shared authentication mechanism.

                                        +

                                        Hierarchy (View Summary)

                                        Index

                                        Implementation - BCS

                                        Implementation - Serialization

                                        Constructors

                                        Methods

                                        Properties

                                        Implementation - BCS

                                        • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                          +

                                          Returns Uint8Array

                                          the BCS representation of the Serializable instance as a byte buffer.

                                          +
                                        • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                          +

                                          Returns Hex

                                          A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                          +

                                        Implementation - Serialization

                                        Constructors

                                        Methods

                                        Properties

                                        signature: Signature
                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Aptos.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Aptos.html new file mode 100644 index 000000000..7305f6b7d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Aptos.html @@ -0,0 +1,1139 @@ +Aptos | @aptos-labs/ts-sdk - v7.0.0
                                        @aptos-labs/ts-sdk - v7.0.0
                                          Preparing search index...

                                          Class Aptos

                                          The main entry point for interacting with the Aptos APIs, +providing access to various functionalities organized into +distinct namespaces.

                                          +

                                          To utilize the SDK, instantiate a new Aptos object to gain +access to the complete range of SDK features.

                                          +
                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                          async function runExample() {
                                          // Create a configuration for connecting to the Aptos testnet
                                          const config = new AptosConfig({ network: Network.TESTNET });

                                          // Initialize the Aptos client with the configuration
                                          const aptos = new Aptos(config);

                                          console.log("Aptos client initialized:", aptos);
                                          }
                                          runExample().catch(console.error); +
                                          + +

                                          Hierarchy (View Summary)

                                          Index

                                          Client

                                          ANS

                                          Account

                                          Coin

                                          DigitalAsset

                                          Faucet

                                          FungibleAsset

                                          General

                                          Keyless

                                          Methods

                                          Object

                                          Properties

                                          Staking

                                          Table

                                          Transaction

                                          Client

                                          • Initializes a new instance of the Aptos client with the provided configuration settings. +This allows you to interact with various Aptos functionalities such as accounts, transactions, and events.

                                            +

                                            Parameters

                                            Returns Aptos

                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            async function runExample() {
                                            // Create a new Aptos client with default settings
                                            const config = new AptosConfig({ network: Network.TESTNET }); // Specify your own settings if needed
                                            const aptos = new Aptos(config);

                                            console.log("Aptos client initialized:", aptos);
                                            }
                                            runExample().catch(console.error); +
                                            + +

                                          ANS

                                          • Clears the target address of a domain or subdomain name, removing the address association. +After clearing, the name will no longer resolve to a specific address.

                                            +

                                            Parameters

                                            Returns Promise<{ data: InputEntryFunctionData; transaction: SimpleTransaction }>

                                            An object containing the transaction and the InputEntryFunctionData

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Clearing the target address for a domain name
                                            const sender = Account.generate(); // replace with a real account

                                            const { transaction, data } = await aptos.clearTargetAddress({
                                            sender,
                                            name: "test.aptos",
                                            });

                                            const targetAddress = await aptos.getTargetAddress({ name: "test.aptos" });
                                            console.log(targetAddress); // Should log undefined after clearing
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Fetches all top-level domain names for a specified account.

                                            +

                                            Parameters

                                            Returns Promise<{ names: AnsName[]; total: number }>

                                            A promise of an array of ANSName.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching all top-level domain names for a specific account
                                            const domains = await aptos.getAccountDomains({
                                            accountAddress: "0x1", // replace with a real account address
                                            options: {
                                            limit: 10, // specify the number of names to fetch
                                            offset: 0, // specify the offset for pagination
                                            orderBy: "created_at", // specify the order by which to sort the names
                                            where: {
                                            // additional filters can be specified here
                                            },
                                            },
                                            });

                                            console.log(domains);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Fetches all names for an account, including both top-level domains and subdomains.

                                            +

                                            Parameters

                                            Returns Promise<{ names: AnsName[]; total: number }>

                                            A promise of an array of ANSName.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetch account names for a specific address
                                            const accountNames = await aptos.getAccountNames({
                                            accountAddress: "0x1", // replace with a real account address
                                            options: {
                                            limit: 10, // specify how many names to fetch
                                            orderBy: "name", // specify the order by which to sort the names
                                            },
                                            });

                                            console.log(accountNames);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Fetches all subdomain names for a specified account.

                                            +

                                            Parameters

                                            Returns Promise<{ names: AnsName[]; total: number }>

                                            A promise of an array of ANSName.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching subdomain names for a specific account
                                            const subdomains = await aptos.getAccountSubdomains({
                                            accountAddress: "0x1", // replace with a real account address
                                            options: {
                                            limit: 10, // specify the number of subdomains to fetch
                                            offset: 0, // specify the offset for pagination
                                            orderBy: "name", // specify the order by which to sort the names
                                            },
                                            });

                                            console.log(subdomains);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Fetches all subdomain names for a given domain, excluding the domain itself.

                                            +

                                            Parameters

                                            Returns Promise<{ names: AnsName[]; total: number }>

                                            A promise that resolves to an array of ANSName.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching subdomains for a specific domain
                                            const subdomains = await aptos.getDomainSubdomains({
                                            domain: "test", // replace with your domain
                                            options: {
                                            limit: 10, // specify the number of subdomains to fetch
                                            offset: 0, // specify the starting point for fetching
                                            orderBy: "name", // specify the order by which to sort the results
                                            },
                                            });

                                            console.log(subdomains);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Retrieve the expiration time of a domain name or subdomain name from the contract.

                                            +

                                            Parameters

                                            • args: { name: string }

                                              The arguments for retrieving the expiration.

                                              +
                                              • name: string

                                                A string of the name to retrieve.

                                                +

                                            Returns Promise<number | undefined>

                                            number as a unix timestamp in milliseconds.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Get the expiration time for the domain "test.aptos"
                                            const exp = await aptos.getExpiration({ name: "test.aptos" });

                                            // Log the expiration date
                                            console.log(new Date(exp)); // Outputs the expiration date
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Fetches a single name from the indexer based on the provided name argument.

                                            +

                                            Parameters

                                            • args: { name: string }

                                              The arguments for retrieving the name.

                                              +
                                              • name: string

                                                A string of the name to retrieve, e.g. "test.aptos.apt" or "test.apt" or "test". +Can be inclusive or exclusive of the .apt suffix and can be a subdomain.

                                                +

                                            Returns Promise<AnsName | undefined>

                                            A promise of an ANSName or undefined if the name is not active.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching a name from the indexer
                                            const name = await aptos.getName({ name: "test.aptos" }); // replace with a real name
                                            console.log(name);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Retrieve the owner address of a specified domain name or subdomain name from the contract.

                                            +

                                            Parameters

                                            • args: { name: string }

                                              The arguments for retrieving the owner address.

                                              +
                                              • name: string

                                                A string representing the name of the domain or subdomain to retrieve the owner address for.

                                                +

                                            Returns Promise<AccountAddress | undefined>

                                            AccountAddress if the name is owned, undefined otherwise.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Retrieve the owner address of "test.aptos"
                                            const owner = await aptos.getOwnerAddress({ name: "test.aptos" });
                                            console.log(owner); // Logs the owner address or undefined if not owned
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Retrieve the primary name for an account. An account can have multiple names, but only one primary name, which may not exist.

                                            +

                                            Parameters

                                            Returns Promise<string | undefined>

                                            A string if the account has a primary name, undefined otherwise.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Retrieve the primary name for the specified account address
                                            const name = await aptos.getPrimaryName({ address: "0x1" }); // replace with a real account address
                                            console.log(name);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Retrieve the target address of a domain or subdomain name, which indicates the address the name points to for use on-chain. +Note that the target address can point to addresses that do not own the name.

                                            +

                                            Parameters

                                            • args: { name: string }

                                              The arguments for retrieving the target address.

                                              +
                                              • name: string

                                                A string representing the name, which can be a primary name, a subdomain, or a combination (e.g., +"primary", "primary.apt", "secondary.primary", "secondary.primary.apt").

                                                +

                                            Returns Promise<AccountAddress | undefined>

                                            AccountAddress if the name has a target, undefined otherwise.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Retrieve the target address for the specified domain name
                                            const targetAddr = await aptos.getTargetAddress({ name: "test.aptos" });

                                            console.log(targetAddr); // Logs the target address, e.g., 0x123...
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Registers a new name.

                                            +

                                            This function allows you to register a domain or subdomain name with specific expiration policies and options.

                                            +

                                            Parameters

                                            Returns Promise<{ data: InputEntryFunctionData; transaction: SimpleTransaction }>

                                            An object containing the transaction and the InputEntryFunctionData

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Registering a subdomain name assuming def.apt is already registered and belongs to the sender alice.
                                            const { transaction, data } = await aptos.registerName({
                                            sender: "0x1", // replace with a real sender account
                                            name: "test.aptos.apt",
                                            expiration: {
                                            policy: "subdomain:independent",
                                            expirationDate: Date.now() + 30 * 24 * 60 * 60 * 1000, // expires in 30 days
                                            },
                                            });

                                            console.log("Transaction:", transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Renews a domain name for one year. +If a domain name was minted with V1 of the contract, it will automatically be upgraded to V2 via this transaction.

                                            +

                                            Parameters

                                            • args: {
                                                  name: string;
                                                  options?: InputGenerateTransactionOptions;
                                                  sender: AccountAddressInput;
                                                  years?: 1;
                                              }

                                              The arguments for renewing the domain.

                                              +
                                              • name: string

                                                A string representing the domain to renew. Subdomains cannot be renewed.

                                                +
                                              • Optionaloptions?: InputGenerateTransactionOptions

                                                Optional transaction options.

                                                +
                                              • sender: AccountAddressInput

                                                The sender account, which must be the domain owner.

                                                +
                                              • Optionalyears?: 1

                                                The number of years to renew the name. Currently, only one year is permitted.

                                                +

                                            Returns Promise<{ data: InputEntryFunctionData; transaction: SimpleTransaction }>

                                            An object containing the transaction and the InputEntryFunctionData

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Renew the domain "test" for one year
                                            const { transaction, data } = await aptos.renewDomain({
                                            sender: Account.generate(), // replace with a real account
                                            name: "test"
                                            });

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Sets the primary name for the sender account, allowing them to designate a single primary name among potentially multiple +names. An account may not have a primary name.

                                            +

                                            Parameters

                                            Returns Promise<{ data: InputEntryFunctionData; transaction: SimpleTransaction }>

                                            An object containing the transaction and the InputEntryFunctionData

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Set the primary name for the sender account
                                            const sender = Account.generate(); // replace with a real account
                                            const { transaction, data } = await aptos.setPrimaryName({ sender, name: "test.aptos" });

                                            const primaryName = await aptos.getPrimaryName({ address: sender.accountAddress });
                                            console.log("Primary Name:", primaryName); // Should log: "Primary Name: test.aptos"
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Sets the target address of a domain or subdomain name, pointing it to a specified address for use on-chain. +The target address can be different from the owner of the name.

                                            +

                                            Parameters

                                            Returns Promise<{ data: InputEntryFunctionData; transaction: SimpleTransaction }>

                                            An object containing the transaction and the InputEntryFunctionData

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Setting the target address for a domain name
                                            const sender = Account.generate(); // replace with a real account
                                            const address = "0x1"; // replace with a real account address

                                            const { transaction, data } = await aptos.setTargetAddress({
                                            sender,
                                            name: "test.aptos",
                                            address,
                                            });

                                            const targetAddress = await aptos.getTargetAddress({ name: "test.aptos" });
                                            console.log(targetAddress); // Should log the address set for "test.aptos"
                                            }
                                            runExample().catch(console.error); +
                                            + +

                                          Account

                                          • Derives an account by providing a private key. This function resolves the provided private key type and derives the public +key from it.

                                            +

                                            If the privateKey is a Secp256k1 type, it derives the account using the derived public key and auth key using the SingleKey +scheme locally. +If the privateKey is an ED25519 type, it looks up the authentication key on chain to determine whether it is a Legacy ED25519 +key or a Unified ED25519 key, and then derives the account based on that.

                                            +

                                            Parameters

                                            • args: {
                                                  minimumLedgerVersion?: AnyNumber;
                                                  options?: { throwIfNoAccountFound?: boolean };
                                                  privateKey: PrivateKeyInput;
                                              }

                                              The arguments for deriving the account.

                                              +
                                              • OptionalminimumLedgerVersion?: AnyNumber
                                              • Optionaloptions?: { throwIfNoAccountFound?: boolean }
                                              • privateKey: PrivateKeyInput

                                                An account private key.

                                                +

                                            Returns Promise<Account>

                                            The derived Account type.

                                            +
                                            import { Aptos, AptosConfig, Network, Ed25519PrivateKey } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Deriving an account from a private key
                                            const account = await aptos.deriveAccountFromPrivateKey({
                                            privateKey: new Ed25519PrivateKey("0x123") // replace with a real private key
                                            });

                                            console.log(account);
                                            }
                                            runExample().catch(console.error); +
                                            + +

                                            Note that more inspection is needed by the user to determine which account exists on-chain

                                            +
                                          • Derives all accounts owned by a signer. This function takes a signer (either an Account or PrivateKey) +and returns all accounts that can be derived from it, ordered by the most recently used account first.

                                            +

                                            Note, this function will not return accounts that require more than one signer to be used.

                                            +

                                            Parameters

                                            • args: {
                                                  minimumLedgerVersion?: AnyNumber;
                                                  options?: { includeUnverified?: boolean; noMultiKey?: boolean };
                                                  signer: Account | PrivateKeyInput;
                                              }

                                              The arguments for deriving owned accounts

                                              +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                The minimum ledger version to wait for before querying

                                                +
                                              • Optionaloptions?: { includeUnverified?: boolean; noMultiKey?: boolean }
                                                • OptionalincludeUnverified?: boolean

                                                  Whether to include unverified accounts in the results. Unverified accounts +are accounts that can be authenticated with the signer, but there is no history of the signer using the account. +Default is false.

                                                  +
                                                • OptionalnoMultiKey?: boolean

                                                  If true, do not include multi-key accounts in the results. Default is false.

                                                  +
                                              • signer: Account | PrivateKeyInput

                                                The signer to derive accounts from (Account or PrivateKey)

                                                +

                                            Returns Promise<Account[]>

                                            Promise resolving to an array of derived Account objects

                                            +
                                            import { Aptos, AptosConfig, Network, Ed25519Account } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function getOwnedAccounts() {
                                            const signer = Ed25519Account.generate();
                                            const accounts = await aptos.deriveOwnedAccountsFromSigner({
                                            signer
                                            });
                                            const account = accounts[0];
                                            console.log(account);
                                            } +
                                            + +
                                          • Retrieves the current amount of APT for a specified account. If the account does not exist, it will return 0.

                                            +

                                            Parameters

                                            • args: { accountAddress: AccountAddressInput; minimumLedgerVersion?: AnyNumber }

                                              The arguments for the account query.

                                              +
                                              • accountAddress: AccountAddressInput

                                                The account address for which to retrieve the APT amount.

                                                +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional ledger version to sync up to before querying.

                                                +

                                            Returns Promise<number>

                                            The current amount of APT for the specified account.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Get the APT amount for a specific account
                                            const accountAPTAmount = await aptos.getAccountAPTAmount({ accountAddress: "0x1" }); // replace with a real account address
                                            console.log("Account APT Amount:", accountAPTAmount);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries the current amount of a specified coin held by an account.

                                            +

                                            Parameters

                                            • args: {
                                                  accountAddress: AccountAddressInput;
                                                  coinType?: `${string}::${string}::${string}`;
                                                  faMetadataAddress?: AccountAddressInput;
                                              }

                                              The parameters for querying the account's coin amount.

                                              +
                                              • accountAddress: AccountAddressInput

                                                The account address to query for the coin amount.

                                                +
                                              • OptionalcoinType?: `${string}::${string}::${string}`

                                                The coin type to query. Note: If not provided, it may be automatically populated if faMetadataAddress +is specified.

                                                +
                                              • OptionalfaMetadataAddress?: AccountAddressInput

                                                The fungible asset metadata address to query. Note: If not provided, it may be automatically +populated if coinType is specified.

                                                +

                                            Returns Promise<number>

                                            The current amount of the specified coin held by the account.

                                            +

                                            Use getBalance({ accountAddress, asset }) instead. +This method is slated for removal in a future release.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Prefer the new API
                                            const amount = await aptos.getBalance({ accountAddress: "0x1", asset: "0x1::aptos_coin::AptosCoin" });
                                            console.log(`Balance: ${amount}`);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Retrieves the current count of an account's coins aggregated across all types.

                                            +

                                            Parameters

                                            • args: { accountAddress: AccountAddressInput; minimumLedgerVersion?: AnyNumber }

                                              The parameters for the account coins count query.

                                              +
                                              • accountAddress: AccountAddressInput

                                                The account address we want to get the total count for.

                                                +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional ledger version to sync up to before querying.

                                                +

                                            Returns Promise<number>

                                            The current count of the aggregated coins for the specified account.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Getting the account coins count for a specific account
                                            const accountCoinsCount = await aptos.getAccountCoinsCount({ accountAddress: "0x1" }); // replace with a real account address
                                            console.log("Account Coins Count:", accountCoinsCount);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Retrieves the coins data for a specified account.

                                            +

                                            Parameters

                                            • args: {
                                                  accountAddress: AccountAddressInput;
                                                  minimumLedgerVersion?: AnyNumber;
                                                  options?: PaginationArgs & OrderByArg<
                                                      {
                                                          amount: any;
                                                          asset_type: string;
                                                          is_frozen: boolean;
                                                          is_primary: boolean;
                                                          last_transaction_timestamp?: any;
                                                          last_transaction_version?: any;
                                                          metadata?: | {
                                                              asset_type: string;
                                                              creator_address: string;
                                                              decimals: number;
                                                              icon_uri?: string
                                                              | null;
                                                              last_transaction_timestamp: any;
                                                              last_transaction_version: any;
                                                              name: string;
                                                              project_uri?: string | null;
                                                              supply_aggregator_table_handle_v1?: string | null;
                                                              supply_aggregator_table_key_v1?: string | null;
                                                              symbol: string;
                                                              token_standard: string;
                                                          }
                                                          | null;
                                                          owner_address: string;
                                                          storage_id: string;
                                                          token_standard: string;
                                                      },
                                                  > & WhereArg<CurrentFungibleAssetBalancesBoolExp>;
                                              }
                                              • accountAddress: AccountAddressInput

                                                The account address for which to retrieve the coin's data.

                                                +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional ledger version to sync up to before querying.

                                                +
                                              • Optionaloptions?: PaginationArgs & OrderByArg<
                                                    {
                                                        amount: any;
                                                        asset_type: string;
                                                        is_frozen: boolean;
                                                        is_primary: boolean;
                                                        last_transaction_timestamp?: any;
                                                        last_transaction_version?: any;
                                                        metadata?: | {
                                                            asset_type: string;
                                                            creator_address: string;
                                                            decimals: number;
                                                            icon_uri?: string
                                                            | null;
                                                            last_transaction_timestamp: any;
                                                            last_transaction_version: any;
                                                            name: string;
                                                            project_uri?: string | null;
                                                            supply_aggregator_table_handle_v1?: string | null;
                                                            supply_aggregator_table_key_v1?: string | null;
                                                            symbol: string;
                                                            token_standard: string;
                                                        }
                                                        | null;
                                                        owner_address: string;
                                                        storage_id: string;
                                                        token_standard: string;
                                                    },
                                                > & WhereArg<CurrentFungibleAssetBalancesBoolExp>

                                            Returns Promise<
                                                {
                                                    amount: any;
                                                    asset_type: string;
                                                    is_frozen: boolean;
                                                    is_primary: boolean;
                                                    last_transaction_timestamp?: any;
                                                    last_transaction_version?: any;
                                                    metadata?: | {
                                                        asset_type: string;
                                                        creator_address: string;
                                                        decimals: number;
                                                        icon_uri?: string
                                                        | null;
                                                        last_transaction_timestamp: any;
                                                        last_transaction_version: any;
                                                        name: string;
                                                        project_uri?: string | null;
                                                        supply_aggregator_table_handle_v1?: string | null;
                                                        supply_aggregator_table_key_v1?: string | null;
                                                        symbol: string;
                                                        token_standard: string;
                                                    }
                                                    | null;
                                                    owner_address: string;
                                                    storage_id: string;
                                                    token_standard: string;
                                                }[],
                                            >

                                            An array containing the coins data for the specified account.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching coins data for a specific account
                                            const accountCoinsData = await aptos.getAccountCoinsData({
                                            accountAddress: "0x1", // replace with a real account address
                                            options: {
                                            limit: 10, // specify the number of results to return
                                            orderBy: { asset_type: "asc" }, // specify the order of results
                                            },
                                            });

                                            console.log(accountCoinsData);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries for all collections that an account currently has tokens for, including NFTs, fungible tokens, and soulbound tokens. +If you want to filter by a specific token standard, you can pass an optional tokenStandard parameter.

                                            +

                                            Parameters

                                            • args: {
                                                  accountAddress: AccountAddressInput;
                                                  minimumLedgerVersion?: AnyNumber;
                                                  options?: TokenStandardArg & PaginationArgs & OrderByArg<
                                                      {
                                                          collection_id?: string
                                                          | null;
                                                          collection_name?: string | null;
                                                          collection_uri?: string | null;
                                                          creator_address?: string | null;
                                                          current_collection?:
                                                              | {
                                                                  collection_id: string;
                                                                  collection_name: string;
                                                                  creator_address: string;
                                                                  current_supply: any;
                                                                  description: string;
                                                                  last_transaction_timestamp: any;
                                                                  last_transaction_version: any;
                                                                  max_supply?: any;
                                                                  mutable_description?: boolean
                                                                  | null;
                                                                  mutable_uri?: boolean | null;
                                                                  table_handle_v1?: string | null;
                                                                  token_standard: string;
                                                                  total_minted_v2?: any;
                                                                  uri: string;
                                                              }
                                                              | null;
                                                          distinct_tokens?: any;
                                                          last_transaction_version?: any;
                                                          owner_address?: string
                                                          | null;
                                                          single_token_uri?: string | null;
                                                      },
                                                  >;
                                              }
                                              • accountAddress: AccountAddressInput

                                                The account address we want to get the collections for.

                                                +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional ledger version to sync up to before querying.

                                                +
                                              • Optionaloptions?: TokenStandardArg & PaginationArgs & OrderByArg<
                                                    {
                                                        collection_id?: string
                                                        | null;
                                                        collection_name?: string | null;
                                                        collection_uri?: string | null;
                                                        creator_address?: string | null;
                                                        current_collection?:
                                                            | {
                                                                collection_id: string;
                                                                collection_name: string;
                                                                creator_address: string;
                                                                current_supply: any;
                                                                description: string;
                                                                last_transaction_timestamp: any;
                                                                last_transaction_version: any;
                                                                max_supply?: any;
                                                                mutable_description?: boolean
                                                                | null;
                                                                mutable_uri?: boolean | null;
                                                                table_handle_v1?: string | null;
                                                                token_standard: string;
                                                                total_minted_v2?: any;
                                                                uri: string;
                                                            }
                                                            | null;
                                                        distinct_tokens?: any;
                                                        last_transaction_version?: any;
                                                        owner_address?: string
                                                        | null;
                                                        single_token_uri?: string | null;
                                                    },
                                                >

                                            Returns Promise<
                                                {
                                                    collection_id?: string
                                                    | null;
                                                    collection_name?: string | null;
                                                    collection_uri?: string | null;
                                                    creator_address?: string | null;
                                                    current_collection?:
                                                        | {
                                                            collection_id: string;
                                                            collection_name: string;
                                                            creator_address: string;
                                                            current_supply: any;
                                                            description: string;
                                                            last_transaction_timestamp: any;
                                                            last_transaction_version: any;
                                                            max_supply?: any;
                                                            mutable_description?: boolean
                                                            | null;
                                                            mutable_uri?: boolean | null;
                                                            table_handle_v1?: string | null;
                                                            token_standard: string;
                                                            total_minted_v2?: any;
                                                            uri: string;
                                                        }
                                                        | null;
                                                    distinct_tokens?: any;
                                                    last_transaction_version?: any;
                                                    owner_address?: string
                                                    | null;
                                                    single_token_uri?: string | null;
                                                }[],
                                            >

                                            Collections array with the collections data.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Get account collections with owned tokens for a specific account
                                            const accountCollectionsWithOwnedTokens = await aptos.getAccountCollectionsWithOwnedTokens({
                                            accountAddress: "0x1", // replace with a real account address
                                            options: {
                                            tokenStandard: "NFT", // specify the token standard if needed
                                            limit: 10, // specify the number of results to return
                                            },
                                            });

                                            console.log(accountCollectionsWithOwnedTokens);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries the current state for an Aptos account given its account address.

                                            +

                                            Parameters

                                            Returns Promise<AccountData>

                                            The account data.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Retrieve account information for a specific address
                                            const accountInfo = await aptos.getAccountInfo({ accountAddress: "0x1" }); // replace with a real account address
                                            console.log(accountInfo);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries for a specific account module given an account address and module name.

                                            +

                                            Parameters

                                            Returns Promise<MoveModuleBytecode>

                                            The account module associated with the specified account address and module name.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Get the account module for a specific account address and module name
                                            const module = await aptos.getAccountModule({
                                            accountAddress: "0x1", // replace with a real account address
                                            moduleName: "MyModule" // specify the module name
                                            });

                                            console.log(module);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries for all modules in an account given an account address. +This function may call the API multiple times to auto paginate through results.

                                            +

                                            Parameters

                                            Returns Promise<MoveModuleBytecode[]>

                                              +
                                            • The account modules associated with the specified address.
                                            • +
                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching account modules for a specific account
                                            const accountModules = await aptos.getAccountModules({
                                            accountAddress: "0x1", // replace with a real account address
                                            options: {
                                            limit: 10, // limiting to 10 modules
                                            },
                                            });

                                            console.log(accountModules);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries for a page of modules in an account given an account address.

                                            +

                                            Parameters

                                            Returns Promise<{ cursor: string | undefined; modules: MoveModuleBytecode[] }>

                                              +
                                            • The account modules associated with the specified address. Along with a cursor for future pagination. If the cursor is undefined, it means there are no more modules to fetch.
                                            • +
                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching account modules for a specific account
                                            const {modules, cursor} = await aptos.getAccountModulesPage({
                                            accountAddress: "0x1", // replace with a real account address
                                            options: {
                                            cursor: undefined, // starting from the first module
                                            limit: 10, // limiting to 10 modules
                                            },
                                            });

                                            console.log(modules);
                                            console.log(`More to fetch: ${cursor !== undefined}`);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries an account's owned objects.

                                            +

                                            Parameters

                                            • args: {
                                                  accountAddress: AccountAddressInput;
                                                  minimumLedgerVersion?: AnyNumber;
                                                  options?: PaginationArgs & OrderByArg<
                                                      {
                                                          allow_ungated_transfer: boolean;
                                                          is_deleted: boolean;
                                                          last_guid_creation_num: any;
                                                          last_transaction_version: any;
                                                          object_address: string;
                                                          owner_address: string;
                                                          state_key_hash: string;
                                                      },
                                                  >;
                                              }
                                              • accountAddress: AccountAddressInput

                                                The account address we want to get the objects for.

                                                +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional ledger version to sync up to before querying.

                                                +
                                              • Optionaloptions?: PaginationArgs & OrderByArg<
                                                    {
                                                        allow_ungated_transfer: boolean;
                                                        is_deleted: boolean;
                                                        last_guid_creation_num: any;
                                                        last_transaction_version: any;
                                                        object_address: string;
                                                        owner_address: string;
                                                        state_key_hash: string;
                                                    },
                                                >

                                            Returns Promise<
                                                {
                                                    allow_ungated_transfer: boolean;
                                                    is_deleted: boolean;
                                                    last_guid_creation_num: any;
                                                    last_transaction_version: any;
                                                    object_address: string;
                                                    owner_address: string;
                                                    state_key_hash: string;
                                                }[],
                                            >

                                            Objects array with the object data.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Get the objects owned by the specified account
                                            const accountOwnedObjects = await aptos.getAccountOwnedObjects({
                                            accountAddress: "0x1", // replace with a real account address
                                            minimumLedgerVersion: 1, // optional, specify if needed
                                            options: {
                                            offset: 0, // optional, specify if needed
                                            limit: 10, // optional, specify if needed
                                            orderBy: "created_at", // optional, specify if needed
                                            },
                                            });

                                            console.log(accountOwnedObjects);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries the tokens currently owned by a specified account, including NFTs and fungible tokens. +If desired, you can filter the results by a specific token standard.

                                            +

                                            Parameters

                                            • args: {
                                                  accountAddress: AccountAddressInput;
                                                  minimumLedgerVersion?: AnyNumber;
                                                  options?: TokenStandardArg & PaginationArgs & OrderByArg<
                                                      {
                                                          amount: any;
                                                          current_token_data?: | {
                                                              collection_id: string;
                                                              current_collection?: | {
                                                                  collection_id: string;
                                                                  collection_name: string;
                                                                  creator_address: string;
                                                                  current_supply: any;
                                                                  description: string;
                                                                  last_transaction_timestamp: any;
                                                                  last_transaction_version: any;
                                                                  max_supply?: any;
                                                                  mutable_description?: boolean
                                                                  | null;
                                                                  mutable_uri?: boolean | null;
                                                                  table_handle_v1?: string | null;
                                                                  token_standard: string;
                                                                  total_minted_v2?: any;
                                                                  uri: string;
                                                              }
                                                              | null;
                                                              decimals?: any;
                                                              description: string;
                                                              is_fungible_v2?: boolean
                                                              | null;
                                                              largest_property_version_v1?: any;
                                                              last_transaction_timestamp: any;
                                                              last_transaction_version: any;
                                                              maximum?: any;
                                                              supply?: any;
                                                              token_data_id: string;
                                                              token_name: string;
                                                              token_properties: any;
                                                              token_standard: string;
                                                              token_uri: string;
                                                          }
                                                          | null;
                                                          is_fungible_v2?: boolean
                                                          | null;
                                                          is_soulbound_v2?: boolean | null;
                                                          last_transaction_timestamp: any;
                                                          last_transaction_version: any;
                                                          owner_address: string;
                                                          property_version_v1: any;
                                                          storage_id: string;
                                                          table_type_v1?: string | null;
                                                          token_data_id: string;
                                                          token_properties_mutated_v1?: any;
                                                          token_standard: string;
                                                      },
                                                  >;
                                              }
                                              • accountAddress: AccountAddressInput

                                                The account address for which to retrieve owned tokens.

                                                +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional ledger version to sync up to before querying.

                                                +
                                              • Optionaloptions?: TokenStandardArg & PaginationArgs & OrderByArg<
                                                    {
                                                        amount: any;
                                                        current_token_data?: | {
                                                            collection_id: string;
                                                            current_collection?: | {
                                                                collection_id: string;
                                                                collection_name: string;
                                                                creator_address: string;
                                                                current_supply: any;
                                                                description: string;
                                                                last_transaction_timestamp: any;
                                                                last_transaction_version: any;
                                                                max_supply?: any;
                                                                mutable_description?: boolean
                                                                | null;
                                                                mutable_uri?: boolean | null;
                                                                table_handle_v1?: string | null;
                                                                token_standard: string;
                                                                total_minted_v2?: any;
                                                                uri: string;
                                                            }
                                                            | null;
                                                            decimals?: any;
                                                            description: string;
                                                            is_fungible_v2?: boolean
                                                            | null;
                                                            largest_property_version_v1?: any;
                                                            last_transaction_timestamp: any;
                                                            last_transaction_version: any;
                                                            maximum?: any;
                                                            supply?: any;
                                                            token_data_id: string;
                                                            token_name: string;
                                                            token_properties: any;
                                                            token_standard: string;
                                                            token_uri: string;
                                                        }
                                                        | null;
                                                        is_fungible_v2?: boolean
                                                        | null;
                                                        is_soulbound_v2?: boolean | null;
                                                        last_transaction_timestamp: any;
                                                        last_transaction_version: any;
                                                        owner_address: string;
                                                        property_version_v1: any;
                                                        storage_id: string;
                                                        table_type_v1?: string | null;
                                                        token_data_id: string;
                                                        token_properties_mutated_v1?: any;
                                                        token_standard: string;
                                                    },
                                                >

                                            Returns Promise<
                                                {
                                                    amount: any;
                                                    current_token_data?: | {
                                                        collection_id: string;
                                                        current_collection?: | {
                                                            collection_id: string;
                                                            collection_name: string;
                                                            creator_address: string;
                                                            current_supply: any;
                                                            description: string;
                                                            last_transaction_timestamp: any;
                                                            last_transaction_version: any;
                                                            max_supply?: any;
                                                            mutable_description?: boolean
                                                            | null;
                                                            mutable_uri?: boolean | null;
                                                            table_handle_v1?: string | null;
                                                            token_standard: string;
                                                            total_minted_v2?: any;
                                                            uri: string;
                                                        }
                                                        | null;
                                                        decimals?: any;
                                                        description: string;
                                                        is_fungible_v2?: boolean
                                                        | null;
                                                        largest_property_version_v1?: any;
                                                        last_transaction_timestamp: any;
                                                        last_transaction_version: any;
                                                        maximum?: any;
                                                        supply?: any;
                                                        token_data_id: string;
                                                        token_name: string;
                                                        token_properties: any;
                                                        token_standard: string;
                                                        token_uri: string;
                                                    }
                                                    | null;
                                                    is_fungible_v2?: boolean
                                                    | null;
                                                    is_soulbound_v2?: boolean | null;
                                                    last_transaction_timestamp: any;
                                                    last_transaction_version: any;
                                                    owner_address: string;
                                                    property_version_v1: any;
                                                    storage_id: string;
                                                    table_type_v1?: string | null;
                                                    token_data_id: string;
                                                    token_properties_mutated_v1?: any;
                                                    token_standard: string;
                                                }[],
                                            >

                                            An array of tokens with their respective data.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Get the tokens owned by a specific account
                                            const accountOwnedTokens = await aptos.getAccountOwnedTokens({
                                            accountAddress: "0x1", // replace with a real account address
                                            options: {
                                            limit: 10, // specify how many tokens to return
                                            orderBy: "created_at", // specify the order of the results
                                            },
                                            });

                                            console.log(accountOwnedTokens);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries all current tokens of a specific collection that an account owns by the collection address. +This query returns all tokens (v1 and v2 standards) an account owns, including NFTs, fungible, soulbound, etc. +If you want to get only the token from a specific standard, you can pass an optional tokenStandard parameter.

                                            +

                                            Parameters

                                            • args: {
                                                  accountAddress: AccountAddressInput;
                                                  collectionAddress: AccountAddressInput;
                                                  minimumLedgerVersion?: AnyNumber;
                                                  options?: TokenStandardArg & PaginationArgs & OrderByArg<
                                                      {
                                                          amount: any;
                                                          current_token_data?: | {
                                                              collection_id: string;
                                                              current_collection?: | {
                                                                  collection_id: string;
                                                                  collection_name: string;
                                                                  creator_address: string;
                                                                  current_supply: any;
                                                                  description: string;
                                                                  last_transaction_timestamp: any;
                                                                  last_transaction_version: any;
                                                                  max_supply?: any;
                                                                  mutable_description?: boolean
                                                                  | null;
                                                                  mutable_uri?: boolean | null;
                                                                  table_handle_v1?: string | null;
                                                                  token_standard: string;
                                                                  total_minted_v2?: any;
                                                                  uri: string;
                                                              }
                                                              | null;
                                                              decimals?: any;
                                                              description: string;
                                                              is_fungible_v2?: boolean
                                                              | null;
                                                              largest_property_version_v1?: any;
                                                              last_transaction_timestamp: any;
                                                              last_transaction_version: any;
                                                              maximum?: any;
                                                              supply?: any;
                                                              token_data_id: string;
                                                              token_name: string;
                                                              token_properties: any;
                                                              token_standard: string;
                                                              token_uri: string;
                                                          }
                                                          | null;
                                                          is_fungible_v2?: boolean
                                                          | null;
                                                          is_soulbound_v2?: boolean | null;
                                                          last_transaction_timestamp: any;
                                                          last_transaction_version: any;
                                                          owner_address: string;
                                                          property_version_v1: any;
                                                          storage_id: string;
                                                          table_type_v1?: string | null;
                                                          token_data_id: string;
                                                          token_properties_mutated_v1?: any;
                                                          token_standard: string;
                                                      },
                                                  >;
                                              }
                                              • accountAddress: AccountAddressInput

                                                The account address we want to get the tokens for.

                                                +
                                              • collectionAddress: AccountAddressInput

                                                The address of the collection being queried.

                                                +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional ledger version to sync up to, before querying.

                                                +
                                              • Optionaloptions?: TokenStandardArg & PaginationArgs & OrderByArg<
                                                    {
                                                        amount: any;
                                                        current_token_data?: | {
                                                            collection_id: string;
                                                            current_collection?: | {
                                                                collection_id: string;
                                                                collection_name: string;
                                                                creator_address: string;
                                                                current_supply: any;
                                                                description: string;
                                                                last_transaction_timestamp: any;
                                                                last_transaction_version: any;
                                                                max_supply?: any;
                                                                mutable_description?: boolean
                                                                | null;
                                                                mutable_uri?: boolean | null;
                                                                table_handle_v1?: string | null;
                                                                token_standard: string;
                                                                total_minted_v2?: any;
                                                                uri: string;
                                                            }
                                                            | null;
                                                            decimals?: any;
                                                            description: string;
                                                            is_fungible_v2?: boolean
                                                            | null;
                                                            largest_property_version_v1?: any;
                                                            last_transaction_timestamp: any;
                                                            last_transaction_version: any;
                                                            maximum?: any;
                                                            supply?: any;
                                                            token_data_id: string;
                                                            token_name: string;
                                                            token_properties: any;
                                                            token_standard: string;
                                                            token_uri: string;
                                                        }
                                                        | null;
                                                        is_fungible_v2?: boolean
                                                        | null;
                                                        is_soulbound_v2?: boolean | null;
                                                        last_transaction_timestamp: any;
                                                        last_transaction_version: any;
                                                        owner_address: string;
                                                        property_version_v1: any;
                                                        storage_id: string;
                                                        table_type_v1?: string | null;
                                                        token_data_id: string;
                                                        token_properties_mutated_v1?: any;
                                                        token_standard: string;
                                                    },
                                                >

                                            Returns Promise<
                                                {
                                                    amount: any;
                                                    current_token_data?: | {
                                                        collection_id: string;
                                                        current_collection?: | {
                                                            collection_id: string;
                                                            collection_name: string;
                                                            creator_address: string;
                                                            current_supply: any;
                                                            description: string;
                                                            last_transaction_timestamp: any;
                                                            last_transaction_version: any;
                                                            max_supply?: any;
                                                            mutable_description?: boolean
                                                            | null;
                                                            mutable_uri?: boolean | null;
                                                            table_handle_v1?: string | null;
                                                            token_standard: string;
                                                            total_minted_v2?: any;
                                                            uri: string;
                                                        }
                                                        | null;
                                                        decimals?: any;
                                                        description: string;
                                                        is_fungible_v2?: boolean
                                                        | null;
                                                        largest_property_version_v1?: any;
                                                        last_transaction_timestamp: any;
                                                        last_transaction_version: any;
                                                        maximum?: any;
                                                        supply?: any;
                                                        token_data_id: string;
                                                        token_name: string;
                                                        token_properties: any;
                                                        token_standard: string;
                                                        token_uri: string;
                                                    }
                                                    | null;
                                                    is_fungible_v2?: boolean
                                                    | null;
                                                    is_soulbound_v2?: boolean | null;
                                                    last_transaction_timestamp: any;
                                                    last_transaction_version: any;
                                                    owner_address: string;
                                                    property_version_v1: any;
                                                    storage_id: string;
                                                    table_type_v1?: string | null;
                                                    token_data_id: string;
                                                    token_properties_mutated_v1?: any;
                                                    token_standard: string;
                                                }[],
                                            >

                                            Tokens array with the token data.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Get tokens owned by a specific account in a specific collection
                                            const accountOwnedTokens = await aptos.getAccountOwnedTokensFromCollectionAddress({
                                            accountAddress: "0x1", // replace with a real account address
                                            collectionAddress: "0x2", // replace with a real collection address
                                            });

                                            console.log(accountOwnedTokens);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries a specific account resource given an account address and resource type.

                                            +

                                            Type Parameters

                                            • T extends {} = any

                                              The typed output of the resource.

                                              +

                                            Parameters

                                            • args: {
                                                  accountAddress: AccountAddressInput;
                                                  options?: LedgerVersionArg;
                                                  resourceType: `${string}::${string}::${string}`;
                                              }
                                              • accountAddress: AccountAddressInput

                                                The Aptos account address to query.

                                                +
                                              • Optionaloptions?: LedgerVersionArg
                                              • resourceType: `${string}::${string}::${string}`

                                                The string representation of an on-chain Move struct type, e.g., "0x1::aptos_coin::AptosCoin".

                                                +

                                            Returns Promise<T>

                                            The account resource of the specified type.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Get the account resource for a specific account address and resource type
                                            const resource = await aptos.getAccountResource({
                                            accountAddress: "0x1", // replace with a real account address
                                            resourceType: "0x1::aptos_coin::AptosCoin"
                                            });

                                            console.log(resource);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries all account resources given an account address. +This function may call the API multiple times to auto paginate through results.

                                            +

                                            Parameters

                                            Returns Promise<MoveResource[]>

                                            Account resources.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching account resources for a specific account address
                                            const resources = await aptos.getAccountResources({ accountAddress: "0x1" }); // replace with a real account address
                                            console.log(resources);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries a page of account resources given an account address.

                                            +

                                            Parameters

                                            Returns Promise<{ cursor: string | undefined; resources: MoveResource[] }>

                                            Account resources.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching account resources for a specific account address
                                            const resources = await aptos.getAccountResourcesPage({
                                            accountAddress: "0x1", // replace with a real account address
                                            options: {
                                            cursor: undefined, // starting from the first resource
                                            limit: 10, // limiting to 10 resources
                                            },
                                            });
                                            console.log(resources);
                                            console.log(`More to fetch: ${resources.cursor !== undefined}`);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Gets all account info (address, account public key, last transaction version) that have are associated with a public key and related public keys

                                            +

                                            For a given public key, it will query all multikeys that the public key is part of. Then for the provided public key and +any multikeys found in the previous step, it will query for any accounts that have an auth key that matches any of the +public keys.

                                            +

                                            Note: If an Ed25519PublicKey or an AnyPublicKey that wraps Ed25519PublicKey is passed in, it will query for both legacy and single singer cases.

                                            +

                                            Parameters

                                            • args: {
                                                  minimumLedgerVersion?: AnyNumber;
                                                  options?: { includeUnverified?: boolean; noMultiKey?: boolean };
                                                  publicKey: BaseAccountPublicKey;
                                              }

                                              The arguments for getting accounts for a public key

                                              +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                The minimum ledger version to wait for before querying

                                                +
                                              • Optionaloptions?: { includeUnverified?: boolean; noMultiKey?: boolean }
                                                • OptionalincludeUnverified?: boolean

                                                  Whether to include unverified accounts in the results. Unverified accounts +are accounts that can be authenticated with the signer, but there is no history of the signer using the account. Default +is false.

                                                  +
                                                • OptionalnoMultiKey?: boolean

                                                  Whether to exclude multi-key accounts in the results. Default is false.

                                                  +
                                              • publicKey: BaseAccountPublicKey

                                                The public key to look up accounts for

                                                +

                                            Returns Promise<AccountInfo[]>

                                            Promise resolving to an array of account addresses and their associated public keys

                                            +
                                            import { Aptos, AptosConfig, Network, Ed25519PrivateKey } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function getAccounts() {
                                            const privateKey = Ed25519PrivateKey.generate();
                                            const publicKey = privateKey.publicKey();
                                            const accounts = await aptos.getAccountsForPublicKey({
                                            publicKey
                                            });
                                            console.log(accounts);
                                            } +
                                            + +
                                          • Queries the current count of tokens owned by a specified account.

                                            +

                                            Parameters

                                            • args: { accountAddress: AccountAddressInput; minimumLedgerVersion?: AnyNumber }

                                              The parameters for the query.

                                              +
                                              • accountAddress: AccountAddressInput

                                                The account address to query the token count for.

                                                +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional ledger version to sync up to before querying.

                                                +

                                            Returns Promise<number>

                                            The current count of tokens owned by the account.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Get the count of tokens owned by the account
                                            const tokensCount = await aptos.getAccountTokensCount({ accountAddress: "0x1" }); // replace with a real account address
                                            console.log(`Tokens Count: ${tokensCount}`);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries account transactions given an account address. +This function may call the API multiple times to auto paginate and retrieve all account transactions.

                                            +

                                            Parameters

                                            Returns Promise<TransactionResponse[]>

                                            The account transactions.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetch transactions for a specific account
                                            const transactions = await aptos.getAccountTransactions({
                                            accountAddress: "0x1", // replace with a real account address
                                            options: {
                                            offset: 0, // starting from the first transaction
                                            limit: 10, // limiting to 10 transactions
                                            },
                                            });

                                            console.log(transactions);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries the current count of transactions submitted by an account.

                                            +

                                            Parameters

                                            • args: { accountAddress: AccountAddressInput; minimumLedgerVersion?: AnyNumber }

                                              The parameters for the query.

                                              +
                                              • accountAddress: AccountAddressInput

                                                The account address we want to get the total count for.

                                                +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional ledger version to sync up to before querying.

                                                +

                                            Returns Promise<number>

                                            Current count of transactions made by an account.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Get the count of transactions for a specific account
                                            const accountTransactionsCount = await aptos.getAccountTransactionsCount({
                                            accountAddress: "0x1", // replace with a real account address
                                            minimumLedgerVersion: 1, // specify your own minimum ledger version if needed
                                            });

                                            console.log(accountTransactionsCount);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Retrieves the balance for an account and asset.

                                            +

                                            Parameters

                                            Returns Promise<number>

                                            The balance as a number.

                                            +
                                            const aptos = new Aptos(new AptosConfig());
                                            // APT coin by type
                                            const apt = await aptos.getBalance({ accountAddress: "0x1", asset: "0x1::aptos_coin::AptosCoin" });
                                            // Some FA by metadata address
                                            const fa = await aptos.getBalance({ accountAddress: "0x1", asset: "0xa" }); +
                                            + +
                                          • Looks up the account address for a given authentication key, handling both rotated and non-rotated keys.

                                            +

                                            Parameters

                                            Returns Promise<AccountAddress>

                                            Promise - The account address associated with the authentication key.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Look up the original account address for a given authentication key
                                            const accountAddress = await aptos.lookupOriginalAccountAddress({
                                            authenticationKey: "0x1", // replace with a real authentication key
                                            });

                                            console.log("Original Account Address:", accountAddress);
                                            }
                                            runExample().catch(console.error); +
                                            + +

                                          Coin

                                          • Generate a transfer coin transaction that can be simulated, signed, and submitted. +This function helps you create a transaction to transfer a specified amount of coins +from one account to another within the Aptos network.

                                            +

                                            Parameters

                                            Returns Promise<SimpleTransaction>

                                            SimpleTransaction

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Generate a transfer coin transaction
                                            const transaction = await aptos.transferCoinTransaction({
                                            sender: "0x1", // replace with a real sender account address
                                            recipient: "0x2", // replace with a real recipient account address
                                            amount: 10,
                                            });

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +

                                          DigitalAsset

                                          • Add a digital asset property to the blockchain. +This function allows you to specify a new property for a digital asset, including its key, type, and value.

                                            +

                                            Parameters

                                            • args: {
                                                  creator: Account;
                                                  digitalAssetAddress: AccountAddressInput;
                                                  digitalAssetType?: `${string}::${string}::${string}`;
                                                  options?: InputGenerateTransactionOptions;
                                                  propertyKey: string;
                                                  propertyType:
                                                      | "BOOLEAN"
                                                      | "U8"
                                                      | "U16"
                                                      | "U32"
                                                      | "U64"
                                                      | "U128"
                                                      | "U256"
                                                      | "ADDRESS"
                                                      | "STRING"
                                                      | "ARRAY";
                                                  propertyValue: PropertyValue;
                                              }

                                              The arguments for adding a digital asset property.

                                              +
                                              • creator: Account

                                                The account that mints the digital asset.

                                                +
                                              • digitalAssetAddress: AccountAddressInput

                                                The digital asset address.

                                                +
                                              • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                (Optional) The type of the digital asset.

                                                +
                                              • Optionaloptions?: InputGenerateTransactionOptions

                                                (Optional) Options for generating the transaction.

                                                +
                                              • propertyKey: string

                                                The property key for storing on-chain properties.

                                                +
                                              • propertyType:
                                                    | "BOOLEAN"
                                                    | "U8"
                                                    | "U16"
                                                    | "U32"
                                                    | "U64"
                                                    | "U128"
                                                    | "U256"
                                                    | "ADDRESS"
                                                    | "STRING"
                                                    | "ARRAY"

                                                The type of property value.

                                                +
                                              • propertyValue: PropertyValue

                                                The property value to be stored on-chain.

                                                +

                                            Returns Promise<SimpleTransaction>

                                            A SimpleTransaction that can be simulated or submitted to the chain.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Add a digital asset property
                                            const transaction = await aptos.addDigitalAssetPropertyTransaction({
                                            creator: Account.generate(), // Replace with a real account
                                            propertyKey: "newKey",
                                            propertyType: "BOOLEAN",
                                            propertyValue: true,
                                            digitalAssetAddress: "0x123", // Replace with a real digital asset address
                                            });

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Add a typed digital asset property to the blockchain. +This function allows you to define and store a specific property for a digital asset, enabling better categorization and +management of digital assets.

                                            +

                                            Parameters

                                            • args: {
                                                  creator: Account;
                                                  digitalAssetAddress: AccountAddressInput;
                                                  digitalAssetType?: `${string}::${string}::${string}`;
                                                  options?: InputGenerateTransactionOptions;
                                                  propertyKey: string;
                                                  propertyType:
                                                      | "BOOLEAN"
                                                      | "U8"
                                                      | "U16"
                                                      | "U32"
                                                      | "U64"
                                                      | "U128"
                                                      | "U256"
                                                      | "ADDRESS"
                                                      | "STRING"
                                                      | "ARRAY";
                                                  propertyValue: PropertyValue;
                                              }

                                              The parameters for adding the typed property.

                                              +
                                              • creator: Account

                                                The account that mints the digital asset.

                                                +
                                              • digitalAssetAddress: AccountAddressInput

                                                The digital asset address.

                                                +
                                              • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                The optional type of the digital asset.

                                                +
                                              • Optionaloptions?: InputGenerateTransactionOptions

                                                Optional transaction generation options.

                                                +
                                              • propertyKey: string

                                                The property key for storing on-chain properties.

                                                +
                                              • propertyType:
                                                    | "BOOLEAN"
                                                    | "U8"
                                                    | "U16"
                                                    | "U32"
                                                    | "U64"
                                                    | "U128"
                                                    | "U256"
                                                    | "ADDRESS"
                                                    | "STRING"
                                                    | "ARRAY"

                                                The type of property value.

                                                +
                                              • propertyValue: PropertyValue

                                                The property value to be stored on-chain.

                                                +

                                            Returns Promise<SimpleTransaction>

                                            A SimpleTransaction that can be simulated or submitted to the chain.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Adding a typed digital asset property
                                            const transaction = await aptos.addDigitalAssetTypedPropertyTransaction({
                                            creator: Account.generate(), // replace with a real account
                                            propertyKey: "typedKey",
                                            propertyType: "STRING",
                                            propertyValue: "hello",
                                            digitalAssetAddress: "0x123", // replace with a real digital asset address
                                            });

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Burn a digital asset by its creator, allowing for the removal of a specified digital asset from the blockchain.

                                            +

                                            Parameters

                                            • args: {
                                                  creator: Account;
                                                  digitalAssetAddress: AccountAddressInput;
                                                  digitalAssetType?: `${string}::${string}::${string}`;
                                                  options?: InputGenerateTransactionOptions;
                                              }

                                              The arguments for burning the digital asset.

                                              +
                                              • creator: Account

                                                The creator account that is burning the digital asset.

                                                +
                                              • digitalAssetAddress: AccountAddressInput

                                                The address of the digital asset to be burned.

                                                +
                                              • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                Optional. The type of the digital asset being burned.

                                                +
                                              • Optionaloptions?: InputGenerateTransactionOptions

                                                Optional. Additional options for generating the transaction.

                                                +

                                            Returns Promise<SimpleTransaction>

                                            A SimpleTransaction that can be simulated or submitted to the chain.

                                            +
                                            import { Aptos, AptosConfig, Network, Account } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            const creator = Account.generate(); // Replace with a real creator account
                                            const transaction = await aptos.burnDigitalAssetTransaction({
                                            creator: creator,
                                            digitalAssetAddress: "0x123", // Replace with a real digital asset address
                                            });

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Creates a new collection within the specified account.

                                            +

                                            Parameters

                                            • args: {
                                                  creator: Account;
                                                  description: string;
                                                  name: string;
                                                  options?: InputGenerateTransactionOptions;
                                                  uri: string;
                                              } & CreateCollectionOptions
                                              • creator: Account

                                                The account of the collection's creator.

                                                +
                                              • description: string

                                                The description of the collection.

                                                +
                                              • name: string

                                                The name of the collection.

                                                +
                                              • Optionaloptions?: InputGenerateTransactionOptions

                                                Optional parameters for generating the transaction.

                                                +

                                                The parameters below are optional:

                                                +
                                              • uri: string

                                                The URI to additional info about the collection.

                                                +

                                              Options for creating a collection, allowing customization of various attributes such as supply limits, mutability of metadata, +and royalty settings.

                                              +
                                              • OptionalmaxSupply?: AnyNumber
                                              • OptionalmutableDescription?: boolean
                                              • OptionalmutableRoyalty?: boolean
                                              • OptionalmutableTokenDescription?: boolean
                                              • OptionalmutableTokenName?: boolean
                                              • OptionalmutableTokenProperties?: boolean
                                              • OptionalmutableTokenURI?: boolean
                                              • OptionalmutableURI?: boolean
                                              • OptionalroyaltyDenominator?: number
                                              • OptionalroyaltyNumerator?: number
                                              • OptionaltokensBurnableByCreator?: boolean
                                              • OptionaltokensFreezableByCreator?: boolean

                                            Returns Promise<SimpleTransaction>

                                            A SimpleTransaction that when submitted will create the collection.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Creating a new collection transaction
                                            const transaction = await aptos.createCollectionTransaction({
                                            creator: Account.generate(), // Replace with a real account
                                            description: "A unique collection of digital assets.",
                                            name: "My Digital Collection",
                                            uri: "https://mycollection.com",
                                            });

                                            console.log("Transaction created:", transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Freeze the ability to transfer a specified digital asset. +This function allows the creator to restrict the transfer capability of a digital asset.

                                            +

                                            Parameters

                                            • args: {
                                                  creator: Account;
                                                  digitalAssetAddress: AccountAddressInput;
                                                  digitalAssetType?: `${string}::${string}::${string}`;
                                                  options?: InputGenerateTransactionOptions;
                                              }

                                              The arguments for freezing the digital asset transfer.

                                              +
                                              • creator: Account

                                                The creator account initiating the freeze.

                                                +
                                              • digitalAssetAddress: AccountAddressInput

                                                The address of the digital asset to be frozen.

                                                +
                                              • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                Optional. The type of the digital asset being frozen.

                                                +
                                              • Optionaloptions?: InputGenerateTransactionOptions

                                                Optional. Additional options for generating the transaction.

                                                +

                                            Returns Promise<SimpleTransaction>

                                            A SimpleTransaction that can be simulated or submitted to the chain.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Freeze the digital asset transfer
                                            const transaction = await aptos.freezeDigitalAssetTransaferTransaction({
                                            creator: Account.generate(), // Replace with a real account if needed
                                            digitalAssetAddress: "0x123", // Replace with a real digital asset address
                                            });

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries data of a specific collection by the collection creator address and the collection name. +This function is deprecated; use getCollectionDataByCreatorAddressAndCollectionName instead.

                                            +

                                            If a creator account has two collections with the same name in v1 and v2, you can pass an optional tokenStandard parameter +to query a specific standard.

                                            +

                                            Parameters

                                            • args: {
                                                  collectionName: string;
                                                  creatorAddress: AccountAddressInput;
                                                  minimumLedgerVersion?: AnyNumber;
                                                  options?: TokenStandardArg;
                                              }

                                              The arguments for querying the collection data.

                                              +
                                              • collectionName: string

                                                The name of the collection.

                                                +
                                              • creatorAddress: AccountAddressInput

                                                The address of the collection's creator.

                                                +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional ledger version to sync up to before querying.

                                                +
                                              • Optionaloptions?: TokenStandardArg

                                                Optional parameters for the query.

                                                +

                                            Returns Promise<
                                                {
                                                    collection_id: string;
                                                    collection_name: string;
                                                    creator_address: string;
                                                    current_supply: any;
                                                    description: string;
                                                    last_transaction_timestamp: any;
                                                    last_transaction_version: any;
                                                    max_supply?: any;
                                                    mutable_description?: boolean
                                                    | null;
                                                    mutable_uri?: boolean | null;
                                                    table_handle_v1?: string | null;
                                                    token_standard: string;
                                                    total_minted_v2?: any;
                                                    uri: string;
                                                },
                                            >

                                            GetCollectionDataResponse - The response type containing the collection data.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Querying collection data by creator address and collection name
                                            const collection = await aptos.getCollectionData({
                                            creatorAddress: "0x1", // replace with a real creator address
                                            collectionName: "myCollection", // specify your collection name
                                            });

                                            console.log(collection);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries data of a specific collection by the collection ID.

                                            +

                                            Parameters

                                            Returns Promise<
                                                {
                                                    collection_id: string;
                                                    collection_name: string;
                                                    creator_address: string;
                                                    current_supply: any;
                                                    description: string;
                                                    last_transaction_timestamp: any;
                                                    last_transaction_version: any;
                                                    max_supply?: any;
                                                    mutable_description?: boolean
                                                    | null;
                                                    mutable_uri?: boolean | null;
                                                    table_handle_v1?: string | null;
                                                    token_standard: string;
                                                    total_minted_v2?: any;
                                                    uri: string;
                                                },
                                            >

                                            GetCollectionDataResponse - The response type containing the collection data.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching collection data by collection ID
                                            const collection = await aptos.getCollectionDataByCollectionId({
                                            collectionId: "0x123", // replace with a real collection ID
                                            });

                                            console.log(collection);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Retrieves data for a specific collection created by a given creator address. +This function allows you to query collection data while optionally specifying a minimum ledger version and pagination options.

                                            +

                                            Parameters

                                            Returns Promise<
                                                {
                                                    collection_id: string;
                                                    collection_name: string;
                                                    creator_address: string;
                                                    current_supply: any;
                                                    description: string;
                                                    last_transaction_timestamp: any;
                                                    last_transaction_version: any;
                                                    max_supply?: any;
                                                    mutable_description?: boolean
                                                    | null;
                                                    mutable_uri?: boolean | null;
                                                    table_handle_v1?: string | null;
                                                    token_standard: string;
                                                    total_minted_v2?: any;
                                                    uri: string;
                                                },
                                            >

                                            GetCollectionDataResponse - The response type containing collection data.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Retrieve collection data by creator address
                                            const collectionData = await aptos.getCollectionDataByCreatorAddress({
                                            creatorAddress: "0x1", // replace with a real creator address
                                            minimumLedgerVersion: 1, // specify the minimum ledger version if needed
                                            options: {
                                            tokenStandard: "v2", // specify the token standard if needed
                                            pagination: { limit: 10, offset: 0 } // specify pagination options if needed
                                            }
                                            });

                                            console.log(collectionData);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries data of a specific collection by the collection creator address and the collection name. +If a creator account has multiple collections with the same name across different versions, +specify the tokenStandard parameter to query a specific standard.

                                            +

                                            Parameters

                                            Returns Promise<
                                                {
                                                    collection_id: string;
                                                    collection_name: string;
                                                    creator_address: string;
                                                    current_supply: any;
                                                    description: string;
                                                    last_transaction_timestamp: any;
                                                    last_transaction_version: any;
                                                    max_supply?: any;
                                                    mutable_description?: boolean
                                                    | null;
                                                    mutable_uri?: boolean | null;
                                                    table_handle_v1?: string | null;
                                                    token_standard: string;
                                                    total_minted_v2?: any;
                                                    uri: string;
                                                },
                                            >

                                            GetCollectionDataResponse - The response type containing collection data.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching collection data by creator address and collection name
                                            const collection = await aptos.getCollectionDataByCreatorAddressAndCollectionName({
                                            creatorAddress: "0x1", // replace with a real creator address
                                            collectionName: "myCollection",
                                            minimumLedgerVersion: 1, // optional, specify if needed
                                            options: { tokenStandard: "v2" } // optional, specify if needed
                                            });

                                            console.log(collection);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries the ID of a specified collection. +This ID corresponds to the collection's object address in V2, while V1 does not utilize objects and lacks an address.

                                            +

                                            Parameters

                                            Returns Promise<string>

                                            The collection ID.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching the collection ID for a specific creator and collection name
                                            const collectionId = await aptos.getCollectionId({
                                            creatorAddress: "0x1", // replace with a real creator address
                                            collectionName: "myCollection"
                                            });

                                            console.log("Collection ID:", collectionId);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Retrieves the current ownership data of a specified digital asset using its address.

                                            +

                                            Parameters

                                            • args: { digitalAssetAddress: AccountAddressInput; minimumLedgerVersion?: AnyNumber }

                                              The parameters for the request.

                                              +
                                              • digitalAssetAddress: AccountAddressInput

                                                The address of the digital asset.

                                                +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional ledger version to sync up to before querying.

                                                +

                                            Returns Promise<
                                                {
                                                    amount: any;
                                                    current_token_data?: | {
                                                        collection_id: string;
                                                        current_collection?: | {
                                                            collection_id: string;
                                                            collection_name: string;
                                                            creator_address: string;
                                                            current_supply: any;
                                                            description: string;
                                                            last_transaction_timestamp: any;
                                                            last_transaction_version: any;
                                                            max_supply?: any;
                                                            mutable_description?: boolean
                                                            | null;
                                                            mutable_uri?: boolean | null;
                                                            table_handle_v1?: string | null;
                                                            token_standard: string;
                                                            total_minted_v2?: any;
                                                            uri: string;
                                                        }
                                                        | null;
                                                        decimals?: any;
                                                        description: string;
                                                        is_fungible_v2?: boolean
                                                        | null;
                                                        largest_property_version_v1?: any;
                                                        last_transaction_timestamp: any;
                                                        last_transaction_version: any;
                                                        maximum?: any;
                                                        supply?: any;
                                                        token_data_id: string;
                                                        token_name: string;
                                                        token_properties: any;
                                                        token_standard: string;
                                                        token_uri: string;
                                                    }
                                                    | null;
                                                    is_fungible_v2?: boolean
                                                    | null;
                                                    is_soulbound_v2?: boolean | null;
                                                    last_transaction_timestamp: any;
                                                    last_transaction_version: any;
                                                    owner_address: string;
                                                    property_version_v1: any;
                                                    storage_id: string;
                                                    table_type_v1?: string | null;
                                                    token_data_id: string;
                                                    token_properties_mutated_v1?: any;
                                                    token_standard: string;
                                                },
                                            >

                                            GetCurrentTokenOwnershipResponse containing relevant ownership data of the digital asset.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Getting the current ownership of a digital asset
                                            const digitalAssetOwner = await aptos.getCurrentDigitalAssetOwnership({
                                            digitalAssetAddress: "0x123", // replace with a real digital asset address
                                            });

                                            console.log(digitalAssetOwner);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Retrieves the activity data for a specified digital asset using its address.

                                            +

                                            Parameters

                                            • args: {
                                                  digitalAssetAddress: AccountAddressInput;
                                                  minimumLedgerVersion?: AnyNumber;
                                                  options?: PaginationArgs & OrderByArg<
                                                      {
                                                          after_value?: string
                                                          | null;
                                                          before_value?: string | null;
                                                          entry_function_id_str?: string | null;
                                                          event_account_address: string;
                                                          event_index: any;
                                                          from_address?: string | null;
                                                          is_fungible_v2?: boolean | null;
                                                          property_version_v1: any;
                                                          to_address?: string | null;
                                                          token_amount: any;
                                                          token_data_id: string;
                                                          token_standard: string;
                                                          transaction_timestamp: any;
                                                          transaction_version: any;
                                                          type: string;
                                                      },
                                                  >;
                                              }

                                              The parameters for the request.

                                              +
                                              • digitalAssetAddress: AccountAddressInput

                                                The address of the digital asset.

                                                +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional minimum ledger version to sync up to before querying.

                                                +
                                              • Optionaloptions?: PaginationArgs & OrderByArg<
                                                    {
                                                        after_value?: string
                                                        | null;
                                                        before_value?: string | null;
                                                        entry_function_id_str?: string | null;
                                                        event_account_address: string;
                                                        event_index: any;
                                                        from_address?: string | null;
                                                        is_fungible_v2?: boolean | null;
                                                        property_version_v1: any;
                                                        to_address?: string | null;
                                                        token_amount: any;
                                                        token_data_id: string;
                                                        token_standard: string;
                                                        transaction_timestamp: any;
                                                        transaction_version: any;
                                                        type: string;
                                                    },
                                                >

                                                Optional pagination and ordering parameters.

                                                +

                                            Returns Promise<
                                                {
                                                    after_value?: string
                                                    | null;
                                                    before_value?: string | null;
                                                    entry_function_id_str?: string | null;
                                                    event_account_address: string;
                                                    event_index: any;
                                                    from_address?: string | null;
                                                    is_fungible_v2?: boolean | null;
                                                    property_version_v1: any;
                                                    to_address?: string | null;
                                                    token_amount: any;
                                                    token_data_id: string;
                                                    token_standard: string;
                                                    transaction_timestamp: any;
                                                    transaction_version: any;
                                                    type: string;
                                                }[],
                                            >

                                            A promise that resolves to the activity data related to the digital asset.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Get the activity data for a digital asset
                                            const digitalAssetActivity = await aptos.getDigitalAssetActivity({
                                            digitalAssetAddress: "0x123", // replace with a real digital asset address
                                            });

                                            console.log(digitalAssetActivity);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Retrieves digital asset data using the address of a digital asset.

                                            +

                                            Parameters

                                            • args: { digitalAssetAddress: AccountAddressInput; minimumLedgerVersion?: AnyNumber }

                                              The parameters for the request.

                                              +
                                              • digitalAssetAddress: AccountAddressInput

                                                The address of the digital asset.

                                                +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional ledger version to sync up to before querying.

                                                +

                                            Returns Promise<
                                                {
                                                    collection_id: string;
                                                    current_collection?: | {
                                                        collection_id: string;
                                                        collection_name: string;
                                                        creator_address: string;
                                                        current_supply: any;
                                                        description: string;
                                                        last_transaction_timestamp: any;
                                                        last_transaction_version: any;
                                                        max_supply?: any;
                                                        mutable_description?: boolean
                                                        | null;
                                                        mutable_uri?: boolean | null;
                                                        table_handle_v1?: string | null;
                                                        token_standard: string;
                                                        total_minted_v2?: any;
                                                        uri: string;
                                                    }
                                                    | null;
                                                    decimals?: any;
                                                    description: string;
                                                    is_fungible_v2?: boolean
                                                    | null;
                                                    largest_property_version_v1?: any;
                                                    last_transaction_timestamp: any;
                                                    last_transaction_version: any;
                                                    maximum?: any;
                                                    supply?: any;
                                                    token_data_id: string;
                                                    token_name: string;
                                                    token_properties: any;
                                                    token_standard: string;
                                                    token_uri: string;
                                                },
                                            >

                                            GetTokenDataResponse containing relevant data for the digital asset.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching digital asset data for a specific address
                                            const digitalAsset = await aptos.getDigitalAssetData({
                                            digitalAssetAddress: "0x123", // replace with a real digital asset address
                                            });

                                            console.log(digitalAsset);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Retrieves the digital assets owned by a specified address.

                                            +

                                            Parameters

                                            • args: {
                                                  minimumLedgerVersion?: AnyNumber;
                                                  options?: PaginationArgs & OrderByArg<
                                                      {
                                                          amount: any;
                                                          current_token_data?: | {
                                                              collection_id: string;
                                                              current_collection?: | {
                                                                  collection_id: string;
                                                                  collection_name: string;
                                                                  creator_address: string;
                                                                  current_supply: any;
                                                                  description: string;
                                                                  last_transaction_timestamp: any;
                                                                  last_transaction_version: any;
                                                                  max_supply?: any;
                                                                  mutable_description?: boolean
                                                                  | null;
                                                                  mutable_uri?: boolean | null;
                                                                  table_handle_v1?: string | null;
                                                                  token_standard: string;
                                                                  total_minted_v2?: any;
                                                                  uri: string;
                                                              }
                                                              | null;
                                                              decimals?: any;
                                                              description: string;
                                                              is_fungible_v2?: boolean
                                                              | null;
                                                              largest_property_version_v1?: any;
                                                              last_transaction_timestamp: any;
                                                              last_transaction_version: any;
                                                              maximum?: any;
                                                              supply?: any;
                                                              token_data_id: string;
                                                              token_name: string;
                                                              token_properties: any;
                                                              token_standard: string;
                                                              token_uri: string;
                                                          }
                                                          | null;
                                                          is_fungible_v2?: boolean
                                                          | null;
                                                          is_soulbound_v2?: boolean | null;
                                                          last_transaction_timestamp: any;
                                                          last_transaction_version: any;
                                                          owner_address: string;
                                                          property_version_v1: any;
                                                          storage_id: string;
                                                          table_type_v1?: string | null;
                                                          token_data_id: string;
                                                          token_properties_mutated_v1?: any;
                                                          token_standard: string;
                                                      },
                                                  >;
                                                  ownerAddress: AccountAddressInput;
                                              }
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional ledger version to sync up to before querying.

                                                +
                                              • Optionaloptions?: PaginationArgs & OrderByArg<
                                                    {
                                                        amount: any;
                                                        current_token_data?: | {
                                                            collection_id: string;
                                                            current_collection?: | {
                                                                collection_id: string;
                                                                collection_name: string;
                                                                creator_address: string;
                                                                current_supply: any;
                                                                description: string;
                                                                last_transaction_timestamp: any;
                                                                last_transaction_version: any;
                                                                max_supply?: any;
                                                                mutable_description?: boolean
                                                                | null;
                                                                mutable_uri?: boolean | null;
                                                                table_handle_v1?: string | null;
                                                                token_standard: string;
                                                                total_minted_v2?: any;
                                                                uri: string;
                                                            }
                                                            | null;
                                                            decimals?: any;
                                                            description: string;
                                                            is_fungible_v2?: boolean
                                                            | null;
                                                            largest_property_version_v1?: any;
                                                            last_transaction_timestamp: any;
                                                            last_transaction_version: any;
                                                            maximum?: any;
                                                            supply?: any;
                                                            token_data_id: string;
                                                            token_name: string;
                                                            token_properties: any;
                                                            token_standard: string;
                                                            token_uri: string;
                                                        }
                                                        | null;
                                                        is_fungible_v2?: boolean
                                                        | null;
                                                        is_soulbound_v2?: boolean | null;
                                                        last_transaction_timestamp: any;
                                                        last_transaction_version: any;
                                                        owner_address: string;
                                                        property_version_v1: any;
                                                        storage_id: string;
                                                        table_type_v1?: string | null;
                                                        token_data_id: string;
                                                        token_properties_mutated_v1?: any;
                                                        token_standard: string;
                                                    },
                                                >

                                                Optional pagination and ordering parameters for the response.

                                                +
                                              • ownerAddress: AccountAddressInput

                                                The address of the owner.

                                                +

                                            Returns Promise<
                                                {
                                                    amount: any;
                                                    current_token_data?: | {
                                                        collection_id: string;
                                                        current_collection?: | {
                                                            collection_id: string;
                                                            collection_name: string;
                                                            creator_address: string;
                                                            current_supply: any;
                                                            description: string;
                                                            last_transaction_timestamp: any;
                                                            last_transaction_version: any;
                                                            max_supply?: any;
                                                            mutable_description?: boolean
                                                            | null;
                                                            mutable_uri?: boolean | null;
                                                            table_handle_v1?: string | null;
                                                            token_standard: string;
                                                            total_minted_v2?: any;
                                                            uri: string;
                                                        }
                                                        | null;
                                                        decimals?: any;
                                                        description: string;
                                                        is_fungible_v2?: boolean
                                                        | null;
                                                        largest_property_version_v1?: any;
                                                        last_transaction_timestamp: any;
                                                        last_transaction_version: any;
                                                        maximum?: any;
                                                        supply?: any;
                                                        token_data_id: string;
                                                        token_name: string;
                                                        token_properties: any;
                                                        token_standard: string;
                                                        token_uri: string;
                                                    }
                                                    | null;
                                                    is_fungible_v2?: boolean
                                                    | null;
                                                    is_soulbound_v2?: boolean | null;
                                                    last_transaction_timestamp: any;
                                                    last_transaction_version: any;
                                                    owner_address: string;
                                                    property_version_v1: any;
                                                    storage_id: string;
                                                    table_type_v1?: string | null;
                                                    token_data_id: string;
                                                    token_properties_mutated_v1?: any;
                                                    token_standard: string;
                                                }[],
                                            >

                                            GetOwnedTokensResponse containing ownership data of the digital assets belonging to the ownerAddress.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching the digital assets owned by the specified address
                                            const digitalAssets = await aptos.getOwnedDigitalAssets({
                                            ownerAddress: "0x1", // replace with a real account address
                                            });

                                            console.log(digitalAssets);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Create a transaction to mint a digital asset into the creator's account within an existing collection. +This function helps you generate a transaction that can be simulated or submitted to the blockchain for minting a digital asset.

                                            +

                                            Parameters

                                            • args: {
                                                  collection: string;
                                                  creator: Account;
                                                  description: string;
                                                  name: string;
                                                  options?: InputGenerateTransactionOptions;
                                                  propertyKeys?: string[];
                                                  propertyTypes?: (
                                                      | "BOOLEAN"
                                                      | "U8"
                                                      | "U16"
                                                      | "U32"
                                                      | "U64"
                                                      | "U128"
                                                      | "U256"
                                                      | "ADDRESS"
                                                      | "STRING"
                                                      | "ARRAY"
                                                  )[];
                                                  propertyValues?: PropertyValue[];
                                                  uri: string;
                                              }
                                              • collection: string

                                                The name of the collection the digital asset belongs to.

                                                +
                                              • creator: Account

                                                The creator of the collection.

                                                +
                                              • description: string

                                                The description of the digital asset.

                                                +
                                              • name: string

                                                The name of the digital asset.

                                                +
                                              • Optionaloptions?: InputGenerateTransactionOptions

                                                Optional transaction generation options.

                                                +
                                              • OptionalpropertyKeys?: string[]

                                                Optional array of property keys for the digital asset.

                                                +
                                              • OptionalpropertyTypes?: (
                                                    | "BOOLEAN"
                                                    | "U8"
                                                    | "U16"
                                                    | "U32"
                                                    | "U64"
                                                    | "U128"
                                                    | "U256"
                                                    | "ADDRESS"
                                                    | "STRING"
                                                    | "ARRAY"
                                                )[]

                                                Optional array of property types for the digital asset.

                                                +
                                              • OptionalpropertyValues?: PropertyValue[]

                                                Optional array of property values for the digital asset.

                                                +
                                              • uri: string

                                                The URI to additional info about the digital asset.

                                                +

                                            Returns Promise<SimpleTransaction>

                                            A SimpleTransaction that can be simulated or submitted to the chain.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Creating a transaction to mint a digital asset
                                            const transaction = await aptos.mintDigitalAssetTransaction({
                                            creator: Account.generate(), // replace with a real account
                                            collection: "MyCollection",
                                            description: "This is a digital asset.",
                                            name: "MyDigitalAsset",
                                            uri: "https://example.com/my-digital-asset",
                                            });

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Mint a soul bound digital asset into a recipient's account. +This function allows you to create a unique digital asset that is bound to a specific account.

                                            +

                                            Parameters

                                            • args: {
                                                  account: Account;
                                                  collection: string;
                                                  description: string;
                                                  name: string;
                                                  options?: InputGenerateTransactionOptions;
                                                  propertyKeys?: string[];
                                                  propertyTypes?: (
                                                      | "BOOLEAN"
                                                      | "U8"
                                                      | "U16"
                                                      | "U32"
                                                      | "U64"
                                                      | "U128"
                                                      | "U256"
                                                      | "ADDRESS"
                                                      | "STRING"
                                                      | "ARRAY"
                                                  )[];
                                                  propertyValues?: PropertyValue[];
                                                  recipient: AccountAddressInput;
                                                  uri: string;
                                              }

                                              The arguments for minting the soul bound transaction.

                                              +
                                              • account: Account

                                                The account that mints the digital asset.

                                                +
                                              • collection: string

                                                The collection name that the digital asset belongs to.

                                                +
                                              • description: string

                                                The digital asset description.

                                                +
                                              • name: string

                                                The digital asset name.

                                                +
                                              • Optionaloptions?: InputGenerateTransactionOptions

                                                Additional options for generating the transaction.

                                                +
                                              • OptionalpropertyKeys?: string[]

                                                The property keys for storing on-chain properties.

                                                +
                                              • OptionalpropertyTypes?: (
                                                    | "BOOLEAN"
                                                    | "U8"
                                                    | "U16"
                                                    | "U32"
                                                    | "U64"
                                                    | "U128"
                                                    | "U256"
                                                    | "ADDRESS"
                                                    | "STRING"
                                                    | "ARRAY"
                                                )[]

                                                The type of property values.

                                                +
                                              • OptionalpropertyValues?: PropertyValue[]

                                                The property values to be stored on-chain.

                                                +
                                              • recipient: AccountAddressInput

                                                The account address where the digital asset will be created.

                                                +
                                              • uri: string

                                                The digital asset URL.

                                                +

                                            Returns Promise<SimpleTransaction>

                                            A SimpleTransaction that can be simulated or submitted to the chain.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Mint a soul bound digital asset
                                            const transaction = await aptos.mintSoulBoundTransaction({
                                            account: Account.generate(), // Replace with a real account
                                            collection: "collectionName",
                                            description: "collectionDescription",
                                            name: "digitalAssetName",
                                            uri: "digital-asset-uri.com",
                                            recipient: "0x123" // Replace with a real recipient account address
                                            });

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Remove a digital asset property from the blockchain. +This function allows you to delete an existing property associated with a digital asset.

                                            +

                                            Parameters

                                            • args: {
                                                  creator: Account;
                                                  digitalAssetAddress: AccountAddressInput;
                                                  digitalAssetType?: `${string}::${string}::${string}`;
                                                  options?: InputGenerateTransactionOptions;
                                                  propertyKey: string;
                                                  propertyType:
                                                      | "BOOLEAN"
                                                      | "U8"
                                                      | "U16"
                                                      | "U32"
                                                      | "U64"
                                                      | "U128"
                                                      | "U256"
                                                      | "ADDRESS"
                                                      | "STRING"
                                                      | "ARRAY";
                                                  propertyValue: PropertyValue;
                                              }

                                              The parameters required to remove the digital asset property.

                                              +
                                              • creator: Account

                                                The account that mints the digital asset.

                                                +
                                              • digitalAssetAddress: AccountAddressInput

                                                The digital asset address.

                                                +
                                              • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                Optional. The type of the digital asset.

                                                +
                                              • Optionaloptions?: InputGenerateTransactionOptions

                                                Optional. Additional options for generating the transaction.

                                                +
                                              • propertyKey: string

                                                The property key for storing on-chain properties.

                                                +
                                              • propertyType:
                                                    | "BOOLEAN"
                                                    | "U8"
                                                    | "U16"
                                                    | "U32"
                                                    | "U64"
                                                    | "U128"
                                                    | "U256"
                                                    | "ADDRESS"
                                                    | "STRING"
                                                    | "ARRAY"

                                                The type of property value.

                                                +
                                              • propertyValue: PropertyValue

                                                The property value to be stored on-chain.

                                                +

                                            Returns Promise<SimpleTransaction>

                                            A SimpleTransaction that can be simulated or submitted to the chain.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Remove a digital asset property
                                            const transaction = await aptos.removeDigitalAssetPropertyTransaction({
                                            creator: Account.generate(), // replace with a real account
                                            propertyKey: "newKey",
                                            propertyType: "BOOLEAN",
                                            propertyValue: true,
                                            digitalAssetAddress: "0x123", // replace with a real digital asset address
                                            });

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Set the digital asset description to provide additional context or information about the asset.

                                            +

                                            Parameters

                                            • args: {
                                                  creator: Account;
                                                  description: string;
                                                  digitalAssetAddress: AccountAddressInput;
                                                  digitalAssetType?: `${string}::${string}::${string}`;
                                                  options?: InputGenerateTransactionOptions;
                                              }

                                              The parameters for setting the digital asset description.

                                              +
                                              • creator: Account

                                                The creator account responsible for the digital asset.

                                                +
                                              • description: string

                                                The digital asset description to be set.

                                                +
                                              • digitalAssetAddress: AccountAddressInput

                                                The address of the digital asset.

                                                +
                                              • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                Optional. The type of the digital asset.

                                                +
                                              • Optionaloptions?: InputGenerateTransactionOptions

                                                Optional. Additional options for generating the transaction.

                                                +

                                            Returns Promise<SimpleTransaction>

                                            A SimpleTransaction that can be simulated or submitted to the chain.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Set the digital asset description
                                            const transaction = await aptos.setDigitalAssetDescriptionTransaction({
                                            creator: Account.generate(), // replace with a real account
                                            description: "This is a digital asset description.",
                                            digitalAssetAddress: "0x123", // replace with a real digital asset address
                                            });

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Set the digital asset name, allowing you to define a name for a specific digital asset on the blockchain.

                                            +

                                            Parameters

                                            • args: {
                                                  creator: Account;
                                                  digitalAssetAddress: AccountAddressInput;
                                                  digitalAssetType?: `${string}::${string}::${string}`;
                                                  name: string;
                                                  options?: InputGenerateTransactionOptions;
                                              }

                                              The parameters for setting the digital asset name.

                                              +
                                              • creator: Account

                                                The creator account responsible for the transaction.

                                                +
                                              • digitalAssetAddress: AccountAddressInput

                                                The address of the digital asset.

                                                +
                                              • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                Optional. The type of the digital asset, represented as a Move struct ID.

                                                +
                                              • name: string

                                                The desired name for the digital asset.

                                                +
                                              • Optionaloptions?: InputGenerateTransactionOptions

                                                Optional. Additional options for generating the transaction.

                                                +

                                            Returns Promise<SimpleTransaction>

                                            A SimpleTransaction that can be simulated or submitted to the blockchain.

                                            +
                                            import { Aptos, AptosConfig, Network, Account } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            const creator = Account.generate(); // Generate a new account for the creator
                                            const digitalAssetAddress = "0x123"; // replace with a real digital asset address

                                            // Set the digital asset name
                                            const transaction = await aptos.setDigitalAssetNameTransaction({
                                            creator: creator,
                                            name: "digitalAssetName",
                                            digitalAssetAddress: digitalAssetAddress,
                                            });

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Set the URI for a digital asset, allowing you to associate a unique identifier with the asset.

                                            +

                                            Parameters

                                            • args: {
                                                  creator: Account;
                                                  digitalAssetAddress: AccountAddressInput;
                                                  digitalAssetType?: `${string}::${string}::${string}`;
                                                  options?: InputGenerateTransactionOptions;
                                                  uri: string;
                                              }

                                              The parameters for the transaction.

                                              +
                                              • creator: Account

                                                The creator account initiating the transaction.

                                                +
                                              • digitalAssetAddress: AccountAddressInput

                                                The address of the digital asset.

                                                +
                                              • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                Optional. The type of the digital asset.

                                                +
                                              • Optionaloptions?: InputGenerateTransactionOptions

                                                Optional. Additional options for generating the transaction.

                                                +
                                              • uri: string

                                                The digital asset URI to be set.

                                                +

                                            Returns Promise<SimpleTransaction>

                                            A SimpleTransaction that can be simulated or submitted to the chain.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Set the URI for a digital asset
                                            const transaction = await aptos.setDigitalAssetURITransaction({
                                            creator: Account.generate(), // Replace with a real creator account
                                            uri: "digital-asset-uri.com",
                                            digitalAssetAddress: "0x123", // Replace with a real digital asset address
                                            });

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Transfer ownership of a non-fungible digital asset. +This function allows you to transfer a digital asset only if it is not frozen, meaning the ownership transfer is not disabled.

                                            +

                                            Parameters

                                            • args: {
                                                  digitalAssetAddress: AccountAddressInput;
                                                  digitalAssetType?: `${string}::${string}::${string}`;
                                                  options?: InputGenerateTransactionOptions;
                                                  recipient: AccountAddress;
                                                  sender: Account;
                                              }

                                              The arguments for transferring the digital asset.

                                              +
                                              • digitalAssetAddress: AccountAddressInput

                                                The address of the digital asset being transferred.

                                                +
                                              • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                Optional. The type of the digital asset, defaults to "0x4::token::Token".

                                                +
                                              • Optionaloptions?: InputGenerateTransactionOptions

                                                Optional. Additional options for generating the transaction.

                                                +
                                              • recipient: AccountAddress

                                                The account address of the recipient.

                                                +
                                              • sender: Account

                                                The sender account of the current digital asset owner.

                                                +

                                            Returns Promise<SimpleTransaction>

                                            A SimpleTransaction that can be simulated or submitted to the chain.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Transfer a digital asset
                                            const transaction = await aptos.transferDigitalAssetTransaction({
                                            sender: Account.generate(), // replace with a real sender account
                                            digitalAssetAddress: "0x123", // replace with a real digital asset address
                                            recipient: "0x456", // replace with a real recipient account address
                                            });

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Unfreeze the ability to transfer a digital asset. +This function allows the specified creator account to unfreeze the transfer of a digital asset identified by its address.

                                            +

                                            Parameters

                                            • args: {
                                                  creator: Account;
                                                  digitalAssetAddress: AccountAddressInput;
                                                  digitalAssetType?: `${string}::${string}::${string}`;
                                                  options?: InputGenerateTransactionOptions;
                                              }

                                              The parameters for unfreezing the digital asset transfer.

                                              +
                                              • creator: Account

                                                The creator account that is unfreezing the digital asset transfer.

                                                +
                                              • digitalAssetAddress: AccountAddressInput

                                                The address of the digital asset to unfreeze.

                                                +
                                              • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                Optional. The type of the digital asset being unfrozen.

                                                +
                                              • Optionaloptions?: InputGenerateTransactionOptions

                                                Optional. Additional options for generating the transaction.

                                                +

                                            Returns Promise<SimpleTransaction>

                                            A SimpleTransaction that can be simulated or submitted to the chain.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Unfreeze the ability to transfer a digital asset
                                            const transaction = await aptos.unfreezeDigitalAssetTransaferTransaction({
                                            creator: Account.generate(), // replace with a real creator account
                                            digitalAssetAddress: "0x123", // replace with a real digital asset address
                                            });

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Update a digital asset property on-chain.

                                            +

                                            Parameters

                                            • args: {
                                                  creator: Account;
                                                  digitalAssetAddress: AccountAddressInput;
                                                  digitalAssetType?: `${string}::${string}::${string}`;
                                                  options?: InputGenerateTransactionOptions;
                                                  propertyKey: string;
                                                  propertyType:
                                                      | "BOOLEAN"
                                                      | "U8"
                                                      | "U16"
                                                      | "U32"
                                                      | "U64"
                                                      | "U128"
                                                      | "U256"
                                                      | "ADDRESS"
                                                      | "STRING"
                                                      | "ARRAY";
                                                  propertyValue: PropertyValue;
                                              }

                                              The parameters for updating the digital asset property.

                                              +
                                              • creator: Account

                                                The account that mints the digital asset.

                                                +
                                              • digitalAssetAddress: AccountAddressInput

                                                The address of the digital asset.

                                                +
                                              • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                Optional. The type of the digital asset.

                                                +
                                              • Optionaloptions?: InputGenerateTransactionOptions

                                                Optional. Additional options for generating the transaction.

                                                +
                                              • propertyKey: string

                                                The property key for storing on-chain properties.

                                                +
                                              • propertyType:
                                                    | "BOOLEAN"
                                                    | "U8"
                                                    | "U16"
                                                    | "U32"
                                                    | "U64"
                                                    | "U128"
                                                    | "U256"
                                                    | "ADDRESS"
                                                    | "STRING"
                                                    | "ARRAY"

                                                The type of property value.

                                                +
                                              • propertyValue: PropertyValue

                                                The property value to be stored on-chain.

                                                +

                                            Returns Promise<SimpleTransaction>

                                            A SimpleTransaction that can be simulated or submitted to the chain.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Update a digital asset property
                                            const transaction = await aptos.updateDigitalAssetPropertyTransaction({
                                            creator: Account.generate(), // replace with a real account
                                            propertyKey: "newKey",
                                            propertyType: "BOOLEAN",
                                            propertyValue: false,
                                            digitalAssetAddress: "0x123", // replace with a real digital asset address
                                            });

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Update a typed digital asset property on-chain. +This function allows you to modify the properties of a digital asset, enabling dynamic updates to its attributes.

                                            +

                                            Parameters

                                            • args: {
                                                  creator: Account;
                                                  digitalAssetAddress: AccountAddressInput;
                                                  digitalAssetType?: `${string}::${string}::${string}`;
                                                  options?: InputGenerateTransactionOptions;
                                                  propertyKey: string;
                                                  propertyType:
                                                      | "BOOLEAN"
                                                      | "U8"
                                                      | "U16"
                                                      | "U32"
                                                      | "U64"
                                                      | "U128"
                                                      | "U256"
                                                      | "ADDRESS"
                                                      | "STRING"
                                                      | "ARRAY";
                                                  propertyValue: PropertyValue;
                                              }

                                              The arguments for updating the digital asset property.

                                              +
                                              • creator: Account

                                                The account that mints the digital asset.

                                                +
                                              • digitalAssetAddress: AccountAddressInput

                                                The digital asset address.

                                                +
                                              • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                (Optional) The type of the digital asset.

                                                +
                                              • Optionaloptions?: InputGenerateTransactionOptions

                                                (Optional) Additional options for generating the transaction.

                                                +
                                              • propertyKey: string

                                                The property key for storing on-chain properties.

                                                +
                                              • propertyType:
                                                    | "BOOLEAN"
                                                    | "U8"
                                                    | "U16"
                                                    | "U32"
                                                    | "U64"
                                                    | "U128"
                                                    | "U256"
                                                    | "ADDRESS"
                                                    | "STRING"
                                                    | "ARRAY"

                                                The type of property value.

                                                +
                                              • propertyValue: PropertyValue

                                                The property value to be stored on-chain.

                                                +

                                            Returns Promise<SimpleTransaction>

                                            A SimpleTransaction that can be simulated or submitted to the chain.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Update a typed digital asset property
                                            const transaction = await aptos.updateDigitalAssetTypedPropertyTransaction({
                                            creator: Account.generate(), // replace with a real account
                                            propertyKey: "typedKey",
                                            propertyType: "U8",
                                            propertyValue: 2,
                                            digitalAssetAddress: "0x123", // replace with a real digital asset address
                                            });

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +

                                          Faucet

                                          • This function creates an account if it does not exist and mints the specified amount of coins into that account.

                                            +

                                            Note that only devnet has a publicly accessible faucet. For testnet, you must use +the minting page at https://aptos.dev/network/faucet.

                                            +

                                            Parameters

                                            Returns Promise<UserTransactionResponse>

                                            Transaction hash of the transaction that funded the account.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.DEVNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fund an account with a specified amount of tokens
                                            const transaction = await aptos.fundAccount({
                                            accountAddress: "0x1", // replace with your account address
                                            amount: 100,
                                            });

                                            console.log("Transaction hash:", transaction.hash);
                                            }
                                            runExample().catch(console.error); +
                                            + +

                                          FungibleAsset

                                          • Queries all fungible asset balances.

                                            +

                                            Parameters

                                            Returns Promise<
                                                {
                                                    amount: any;
                                                    asset_type: string;
                                                    is_frozen: boolean;
                                                    is_primary: boolean;
                                                    last_transaction_timestamp?: any;
                                                    last_transaction_version?: any;
                                                    owner_address: string;
                                                    storage_id: string;
                                                    token_standard: string;
                                                }[],
                                            >

                                            A list of fungible asset metadata.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching current fungible asset balances
                                            const fungibleAssetBalances = await aptos.getCurrentFungibleAssetBalances();

                                            console.log(fungibleAssetBalances);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries all fungible asset activities and returns a list of their metadata.

                                            +

                                            Parameters

                                            Returns Promise<
                                                {
                                                    amount?: any;
                                                    asset_type?: string
                                                    | null;
                                                    block_height: any;
                                                    entry_function_id_str?: string | null;
                                                    event_index: any;
                                                    gas_fee_payer_address?: string | null;
                                                    is_frozen?: boolean | null;
                                                    is_gas_fee: boolean;
                                                    is_transaction_success: boolean;
                                                    owner_address?: string | null;
                                                    storage_id: string;
                                                    storage_refund_amount: any;
                                                    token_standard: string;
                                                    transaction_timestamp: any;
                                                    transaction_version: any;
                                                    type: string;
                                                }[],
                                            >

                                            A list of fungible asset metadata.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching fungible asset activities
                                            const fungibleAssetActivities = await aptos.getFungibleAssetActivities();
                                            console.log(fungibleAssetActivities);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries all fungible asset metadata.

                                            +

                                            Parameters

                                            Returns Promise<
                                                {
                                                    asset_type: string;
                                                    creator_address: string;
                                                    decimals: number;
                                                    icon_uri?: string
                                                    | null;
                                                    last_transaction_timestamp: any;
                                                    last_transaction_version: any;
                                                    maximum_v2?: any;
                                                    name: string;
                                                    project_uri?: string | null;
                                                    supply_aggregator_table_handle_v1?: string | null;
                                                    supply_aggregator_table_key_v1?: string | null;
                                                    supply_v2?: any;
                                                    symbol: string;
                                                    token_standard: string;
                                                }[],
                                            >

                                            A list of fungible asset metadata.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching fungible asset metadata
                                            const fungibleAssets = await aptos.getFungibleAssetMetadata();
                                            console.log(fungibleAssets);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries the fungible asset metadata for a specific asset type. +This function helps retrieve detailed information about a fungible asset based on its type.

                                            +

                                            Parameters

                                            • args: { assetType: string; minimumLedgerVersion?: AnyNumber }

                                              The parameters for the query.

                                              +
                                              • assetType: string

                                                The asset type of the fungible asset, e.g., "0x1::aptos_coin::AptosCoin" for Aptos Coin.

                                                +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional ledger version to sync up to before querying.

                                                +

                                            Returns Promise<
                                                {
                                                    asset_type: string;
                                                    creator_address: string;
                                                    decimals: number;
                                                    icon_uri?: string
                                                    | null;
                                                    last_transaction_timestamp: any;
                                                    last_transaction_version: any;
                                                    maximum_v2?: any;
                                                    name: string;
                                                    project_uri?: string | null;
                                                    supply_aggregator_table_handle_v1?: string | null;
                                                    supply_aggregator_table_key_v1?: string | null;
                                                    supply_v2?: any;
                                                    symbol: string;
                                                    token_standard: string;
                                                },
                                            >

                                            A fungible asset metadata item.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Retrieve fungible asset metadata by asset type
                                            const fungibleAsset = await aptos.getFungibleAssetMetadataByAssetType({
                                            assetType: "0x1::aptos_coin::AptosCoin" // replace with your asset type
                                            });

                                            console.log(fungibleAsset);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Retrieves fungible asset metadata based on the creator address.

                                            +

                                            This function allows you to query metadata for a specific fungible asset created by a given address.

                                            +

                                            Parameters

                                            • args: { creatorAddress: AccountAddressInput; minimumLedgerVersion?: AnyNumber }

                                              The parameters for the query.

                                              +
                                              • creatorAddress: AccountAddressInput

                                                The creator address of the fungible asset.

                                                +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional ledger version to sync up to before querying.

                                                +

                                            Returns Promise<
                                                {
                                                    asset_type: string;
                                                    creator_address: string;
                                                    decimals: number;
                                                    icon_uri?: string
                                                    | null;
                                                    last_transaction_timestamp: any;
                                                    last_transaction_version: any;
                                                    maximum_v2?: any;
                                                    name: string;
                                                    project_uri?: string | null;
                                                    supply_aggregator_table_handle_v1?: string | null;
                                                    supply_aggregator_table_key_v1?: string | null;
                                                    supply_v2?: any;
                                                    symbol: string;
                                                    token_standard: string;
                                                }[],
                                            >

                                            A fungible asset metadata item.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Retrieve fungible asset metadata by creator address
                                            const fungibleAsset = await aptos.getFungibleAssetMetadataByCreatorAddress({
                                            creatorAddress: "0x123", // replace with a real creator address
                                            });

                                            console.log(fungibleAsset);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Transfer a specified amount of fungible asset from the sender's primary store to the recipient's primary store. +This method allows you to transfer any fungible asset, including fungible tokens.

                                            +

                                            Parameters

                                            Returns Promise<SimpleTransaction>

                                            A SimpleTransaction that can be simulated or submitted to the chain.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Transfer fungible asset from sender to recipient
                                            const transaction = await aptos.transferFungibleAsset({
                                            sender: Account.generate(), // replace with a real sender account
                                            fungibleAssetMetadataAddress: "0x123", // replace with a real fungible asset address
                                            recipient: "0x456", // replace with a real recipient account
                                            amount: 5
                                            });

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Transfer a specified amount of fungible asset from the sender's any (primary or secondary) fungible store to any (primary or secondary) fungible store. +This method allows you to transfer any fungible asset, including fungible tokens.

                                            +

                                            Parameters

                                            Returns Promise<SimpleTransaction>

                                            A SimpleTransaction that can be simulated or submitted to the chain.

                                            +

                                            Error if:

                                            +
                                              +
                                            • The sender account is invalid
                                            • +
                                            • The store addresses are invalid
                                            • +
                                            • The amount is negative or zero
                                            • +
                                            • The transaction fails to generate
                                            • +
                                            +
                                            import { Aptos, AptosConfig, Network, Account } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function transferAssets() {
                                            // Transfer 100 units of the asset from senderStore to recipientStore
                                            const transaction = await aptos.transferFungibleAssetBetweenStores({
                                            sender: Account.generate(), // replace with a real sender account
                                            fromStore: "0x123", // replace with a real fungible store address
                                            toStore: "0x456", // replace with a real fungible store address
                                            amount: 100
                                            });

                                            console.log(transaction);
                                            }

                                            transferAssets().catch(console.error); +
                                            + +

                                          General

                                          • Retrieve a block by its height, allowing for the inclusion of transactions if specified.

                                            +

                                            Parameters

                                            • args: { blockHeight: AnyNumber; options?: { withTransactions?: boolean } }

                                              The parameters for the block retrieval.

                                              +
                                              • blockHeight: AnyNumber

                                                The block height to look up, starting at 0.

                                                +
                                              • Optionaloptions?: { withTransactions?: boolean }

                                                Optional settings for the retrieval.

                                                +
                                                • OptionalwithTransactions?: boolean

                                                  If set to true, includes all transactions in the block.

                                                  +

                                            Returns Promise<Block>

                                            The block with optional transactions included.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Retrieve the block at height 5, including transactions
                                            const block = await aptos.getBlockByHeight({ blockHeight: 5, options: { withTransactions: true } });
                                            console.log(block);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Retrieves block information by the specified ledger version.

                                            +

                                            Parameters

                                            • args: { ledgerVersion: AnyNumber; options?: { withTransactions?: boolean } }

                                              The arguments for retrieving the block.

                                              +
                                              • ledgerVersion: AnyNumber

                                                The ledger version to lookup block information for.

                                                +
                                              • Optionaloptions?: { withTransactions?: boolean }

                                                Optional parameters for the request.

                                                +
                                                • OptionalwithTransactions?: boolean

                                                  If set to true, include all transactions in the block.

                                                  +

                                            Returns Promise<Block>

                                            Block information with optional transactions.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Retrieve block information for a specific ledger version
                                            const block = await aptos.getBlockByVersion({ ledgerVersion: 5 });
                                            console.log(block);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Retrieves the chain ID of the Aptos blockchain.

                                            +

                                            Returns Promise<number>

                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching the chain ID
                                            const chainId = await aptos.getChainId();
                                            console.log("Chain ID:", chainId);
                                            }
                                            runExample().catch(console.error);

                                            @returns The chain ID of the Aptos blockchain. +
                                            + +
                                          • Queries the top user transactions based on the specified limit.

                                            +

                                            Parameters

                                            • args: { limit: number }

                                              The arguments for querying top user transactions.

                                              +
                                              • limit: number

                                                The number of transactions to return.

                                                +

                                            Returns Promise<{ version: any }[]>

                                            GetChainTopUserTransactionsResponse

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetch the top user transactions with a limit of 5
                                            const topUserTransactions = await aptos.getChainTopUserTransactions({ limit: 5 });

                                            console.log(topUserTransactions);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries for the last successful indexer version, providing insight into the ledger version the indexer is updated to, which +may lag behind the full nodes.

                                            +

                                            Returns Promise<bigint>

                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Get the last successful indexer version
                                            const version = await aptos.getIndexerLastSuccessVersion();
                                            console.log(`Last successful indexer version: ${version}`);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries for the Aptos ledger information.

                                            +

                                            Returns Promise<LedgerInfo>

                                            The Aptos Ledger Info, which includes details such as chain ID, epoch, and ledger version.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching the ledger information
                                            const ledgerInfo = await aptos.getLedgerInfo();

                                            console.log(ledgerInfo);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Query the processor status for a specific processor type.

                                            +

                                            Parameters

                                            Returns Promise<{ last_success_version: any; last_updated: any; processor: string }>

                                            The status of the specified processor type.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Get the processor status for the account transactions processor
                                            const status = await aptos.getProcessorStatus("account_transactions_processor");
                                            console.log(status);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Retrieves data from the Aptos Indexer using a GraphQL query. +This function allows you to execute complex queries to fetch specific data from the Aptos blockchain.

                                            +

                                            Type Parameters

                                            • T extends {}

                                            Parameters

                                            Returns Promise<T>

                                            The provided T type.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Querying the Aptos Indexer for ledger information
                                            const topUserTransactions = await aptos.queryIndexer({
                                            query: { query: `query MyQuery {
                                            ledger_infos {
                                            chain_id
                                            }
                                            }`}
                                            });

                                            console.log(topUserTransactions);
                                            }
                                            runExample().catch(console.error); +
                                            + +

                                          Keyless

                                          • Fetches the pepper from the Aptos pepper service API.

                                            +

                                            Parameters

                                            • args: { derivationPath?: string; ephemeralKeyPair: EphemeralKeyPair; jwt: string }

                                              The arguments for fetching the pepper.

                                              +
                                              • OptionalderivationPath?: string

                                                A derivation path used for creating multiple accounts per user via the BIP-44 standard. Defaults +to "m/44'/637'/0'/0'/0".

                                                +
                                              • ephemeralKeyPair: EphemeralKeyPair

                                                The EphemeralKeyPair used to generate the nonce in the JWT token.

                                                +
                                              • jwt: string

                                                JWT token.

                                                +

                                            Returns Promise<Uint8Array<ArrayBufferLike>>

                                            The pepper which is a Uint8Array of length 31.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            const ephemeralKeyPair = new EphemeralKeyPair(); // create a new ephemeral key pair
                                            const jwt = "your_jwt_token"; // replace with a real JWT token

                                            // Fetching the pepper using the provided JWT and ephemeral key pair
                                            const pepper = await aptos.getPepper({
                                            jwt,
                                            ephemeralKeyPair,
                                            // derivationPath: "m/44'/637'/0'/0'/0" // specify your own if needed
                                            });

                                            console.log("Fetched pepper:", pepper);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Fetches a proof from the Aptos prover service API.

                                            +

                                            Parameters

                                            • args: {
                                                  ephemeralKeyPair: EphemeralKeyPair;
                                                  jwt: string;
                                                  pepper?: HexInput;
                                                  uidKey?: string;
                                              }

                                              The arguments for fetching the proof.

                                              +
                                              • ephemeralKeyPair: EphemeralKeyPair

                                                The EphemeralKeyPair used to generate the nonce in the JWT token.

                                                +
                                              • jwt: string

                                                JWT token.

                                                +
                                              • Optionalpepper?: HexInput

                                                The pepper used for the account. If not provided, it will be fetched from the Aptos pepper service.

                                                +
                                              • OptionaluidKey?: string

                                                A key in the JWT token to use to set the uidVal in the IdCommitment.

                                                +

                                            Returns Promise<ZeroKnowledgeSig>

                                            The proof which is represented by a ZeroKnowledgeSig.

                                            +
                                            import { Aptos, AptosConfig, Network, EphemeralKeyPair, getPepper } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            const jwt = "your_jwt_token"; // replace with a real JWT token
                                            const ephemeralKeyPair = new EphemeralKeyPair(); // create a new ephemeral key pair

                                            // Fetch the proof using the getProof function
                                            const proof = await aptos.getProof({
                                            jwt,
                                            ephemeralKeyPair,
                                            pepper: await getPepper({}), // fetch the pepper if not provided
                                            uidKey: "sub", // specify the uid key
                                            });

                                            console.log("Fetched proof:", proof);
                                            }
                                            runExample().catch(console.error); +
                                            + +

                                          Methods

                                          • Parameters

                                            • ignore: boolean

                                            Returns void

                                          Object

                                          • Fetches the object data based on the specified object address.

                                            +

                                            Parameters

                                            • args: {
                                                  minimumLedgerVersion?: AnyNumber;
                                                  objectAddress: AccountAddressInput;
                                                  options?: PaginationArgs & OrderByArg<
                                                      {
                                                          allow_ungated_transfer: boolean;
                                                          is_deleted: boolean;
                                                          last_guid_creation_num: any;
                                                          last_transaction_version: any;
                                                          object_address: string;
                                                          owner_address: string;
                                                          state_key_hash: string;
                                                      },
                                                  >;
                                              }
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional minimum ledger version to wait for.

                                                +
                                              • objectAddress: AccountAddressInput

                                                The object address to retrieve data for.

                                                +
                                              • Optionaloptions?: PaginationArgs & OrderByArg<
                                                    {
                                                        allow_ungated_transfer: boolean;
                                                        is_deleted: boolean;
                                                        last_guid_creation_num: any;
                                                        last_transaction_version: any;
                                                        object_address: string;
                                                        owner_address: string;
                                                        state_key_hash: string;
                                                    },
                                                >

                                                Optional configuration options for pagination and ordering.

                                                +

                                            Returns Promise<
                                                {
                                                    allow_ungated_transfer: boolean;
                                                    is_deleted: boolean;
                                                    last_guid_creation_num: any;
                                                    last_transaction_version: any;
                                                    object_address: string;
                                                    owner_address: string;
                                                    state_key_hash: string;
                                                },
                                            >

                                            The object data corresponding to the provided address.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching object data by object address
                                            const objectData = await aptos.getObjectDataByObjectAddress({
                                            objectAddress: "0x1", // replace with a real object address
                                            });

                                            console.log(objectData);
                                            }
                                            runExample().catch(console.error); +
                                            + +

                                          Properties

                                          abstraction: AccountAbstraction
                                          account: Account
                                          ans: ANS
                                          coin: Coin
                                          config: AptosConfig

                                          The configuration settings for the Aptos client.

                                          +
                                          digitalAsset: DigitalAsset
                                          faucet: Faucet
                                          fungibleAsset: FungibleAsset
                                          general: General
                                          keyless: Keyless
                                          object: AptosObject
                                          staking: Staking
                                          table: Table
                                          transaction: Transaction

                                          Staking

                                          • Queries delegated staking activities for a specific delegator and pool.

                                            +

                                            Parameters

                                            Returns Promise<
                                                {
                                                    amount: any;
                                                    delegator_address: string;
                                                    event_index: any;
                                                    event_type: string;
                                                    pool_address: string;
                                                    transaction_version: any;
                                                }[],
                                            >

                                            The response containing delegated staking activities.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Get delegated staking activities for a specific delegator and pool
                                            const activities = await aptos.getDelegatedStakingActivities({
                                            delegatorAddress: "0x1", // replace with a real delegator address
                                            poolAddress: "0x2", // replace with a real pool address
                                            minimumLedgerVersion: 1, // specify your own if needed
                                            });

                                            console.log(activities);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries the current number of delegators in a specified pool. Throws an error if the pool is not found.

                                            +

                                            Parameters

                                            Returns Promise<number>

                                            The number of delegators for the given pool.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Get the number of delegators for a specific pool
                                            const delegators = await aptos.getNumberOfDelegators({ poolAddress: "0x1" }); // replace with a real pool address
                                            console.log(`Number of delegators: ${delegators}`);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Retrieves the current number of delegators across all pools.

                                            +

                                            Parameters

                                            • Optionalargs: {
                                                  minimumLedgerVersion?: AnyNumber;
                                                  options?: OrderByArg<
                                                      { num_active_delegator?: any; pool_address?: string
                                                      | null },
                                                  >;
                                              }

                                              Optional parameters for the query.

                                              +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional ledger version to sync up to before querying.

                                                +
                                              • Optionaloptions?: OrderByArg<{ num_active_delegator?: any; pool_address?: string | null }>

                                                Optional ordering options for the response.

                                                +

                                            Returns Promise<{ num_active_delegator?: any; pool_address?: string | null }[]>

                                            GetNumberOfDelegatorsForAllPoolsResponse response type containing the number of delegators per pool.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Retrieve the number of delegators for all pools
                                            const delegators = await aptos.getNumberOfDelegatorsForAllPools();
                                            console.log(delegators);
                                            }
                                            runExample().catch(console.error); +
                                            + +

                                          Table

                                          • Queries for a specific item in a table identified by the handle and the key for the item. +This function allows you to retrieve structured data from a table in the Aptos blockchain.

                                            +

                                            Type Parameters

                                            • T

                                            Parameters

                                            Returns Promise<T>

                                            Table item value rendered in JSON.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Retrieve a table item from the Aptos blockchain
                                            const tableItem = await aptos.getTableItem({
                                            handle: "0x1b854694ae746cdbd8d44186ca4929b2b337df21d1c74633be19b2710552fdca",
                                            data: {
                                            key_type: "address", // Move type of table key
                                            value_type: "u128", // Move type of table value
                                            key: "0x619dc29a0aac8fa146714058e8dd6d2d0f3bdf5f6331907bf91f3acd81e6935" // Value of table key
                                            },
                                            });

                                            console.log(tableItem);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries for table items data with optional filtering and pagination. +This function allows you to retrieve specific data from a table based on provided criteria.

                                            +

                                            Parameters

                                            • args: {
                                                  minimumLedgerVersion?: AnyNumber;
                                                  options?: PaginationArgs & WhereArg<TableItemsBoolExp> & OrderByArg<
                                                      {
                                                          decoded_key: any;
                                                          decoded_value?: any;
                                                          key: string;
                                                          table_handle: string;
                                                          transaction_version: any;
                                                          write_set_change_index: any;
                                                      },
                                                  >;
                                              }

                                              The arguments for querying table items data.

                                              +
                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                Optional minimum ledger version to wait for before querying.

                                                +
                                              • Optionaloptions?: PaginationArgs & WhereArg<TableItemsBoolExp> & OrderByArg<
                                                    {
                                                        decoded_key: any;
                                                        decoded_value?: any;
                                                        key: string;
                                                        table_handle: string;
                                                        transaction_version: any;
                                                        write_set_change_index: any;
                                                    },
                                                >

                                                Optional parameters for pagination and filtering.

                                                +

                                            Returns Promise<
                                                {
                                                    decoded_key: any;
                                                    decoded_value?: any;
                                                    key: string;
                                                    table_handle: string;
                                                    transaction_version: any;
                                                    write_set_change_index: any;
                                                }[],
                                            >

                                            GetTableItemsDataResponse

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Retrieve table items data with specific filtering options
                                            const data = await aptos.getTableItemsData({
                                            minimumLedgerVersion: 1, // specify your own minimum ledger version if needed
                                            options: {
                                            where: {
                                            table_handle: { _eq: "0x1b854694ae746cdbd8d44186ca4929b2b337df21d1c74633be19b2710552fdca" },
                                            transaction_version: { _eq: "0" }
                                            },
                                            limit: 10, // specify your own limit if needed
                                            },
                                            });

                                            console.log(data);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries for the metadata of table items, allowing for filtering and pagination.

                                            +

                                            Parameters

                                            Returns Promise<{ handle: string; key_type: string; value_type: string }[]>

                                            GetTableItemsMetadataResponse

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching table items metadata with a filter condition
                                            const data = await aptos.getTableItemsMetadata({
                                            minimumLedgerVersion: 1, // specify your own minimum ledger version if needed
                                            options: {
                                            where: { handle: { _eq: "0x1b854694ae746cdbd8d44186ca4929b2b337df21d1c74633be19b2710552fdca" } },
                                            limit: 10, // specify your own limit if needed
                                            },
                                            });

                                            console.log(data);
                                            }
                                            runExample().catch(console.error); +
                                            + +

                                          Transaction

                                          • Parameters

                                            Returns Promise<void>

                                            Prefer to use aptos.transaction.batch.forSingleAccount()

                                            +

                                            Batch transactions for a single account by submitting multiple transaction payloads. +This function is useful for efficiently processing and submitting transactions that do not depend on each other, such as +batch funding or batch token minting.

                                            +

                                            Error if any worker failure occurs during submission.

                                            +
                                            import { Aptos, AptosConfig, Network, Account } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);
                                            const sender = Account.generate(); // Generate a new account for sending transactions

                                            async function runExample() {
                                            const transactions = [
                                            { }, // Build your first transaction payload
                                            { }, // Build your second transaction payload
                                            ];

                                            // Batch transactions for the single account
                                            await aptos.batchTransactionsForSingleAccount({
                                            sender,
                                            data: transactions,
                                            });

                                            console.log("Batch transactions submitted successfully.");
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Estimates the gas unit price required to process a transaction on the Aptos blockchain in a timely manner. +This helps users to understand the cost associated with their transactions. +https://api.mainnet.aptoslabs.com/v1/spec#/operations/estimate_gas_price

                                            +

                                            Returns Promise<GasEstimation>

                                            An object containing the estimated gas price.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET }); // Specify your network
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Getting the gas price estimation
                                            const gasPriceEstimation = await aptos.getGasPriceEstimation();

                                            console.log("Estimated Gas Price:", gasPriceEstimation);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Returns a signing message for a transaction, allowing a user to sign it using their preferred method before submission to the network.

                                            +

                                            Parameters

                                            Returns Uint8Array

                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            const transaction = await aptos.transaction.build.simple({
                                            sender: "0x1", // replace with a real sender address
                                            data: {
                                            function: "0x1::aptos_account::transfer",
                                            functionArguments: ["0x2", 100], // replace with a real destination address
                                            },
                                            });

                                            const message = await aptos.getSigningMessage({ transaction });
                                            console.log(message);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries on-chain transactions by their transaction hash, returning both pending and committed transactions.

                                            +

                                            Parameters

                                            • args: { transactionHash: HexInput }

                                              The arguments for querying the transaction.

                                              +
                                              • transactionHash: HexInput

                                                The transaction hash should be a hex-encoded bytes string with a 0x prefix.

                                                +

                                            Returns Promise<TransactionResponse>

                                            The transaction from the mempool (pending) or the on-chain (committed) transaction.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetch a transaction by its hash
                                            const transaction = await aptos.getTransactionByHash({ transactionHash: "0x123" }); // replace with a real transaction hash

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries on-chain transaction by version. This function will not return pending transactions.

                                            +

                                            Parameters

                                            • args: { ledgerVersion: AnyNumber }

                                              The arguments for querying the transaction.

                                              +
                                              • ledgerVersion: AnyNumber

                                                Transaction version is an unsigned 64-bit number.

                                                +

                                            Returns Promise<TransactionResponse>

                                            On-chain transaction. Only on-chain transactions have versions, so this +function cannot be used to query pending transactions.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetching a transaction by its version
                                            const transaction = await aptos.getTransactionByVersion({ ledgerVersion: 1 }); // replace 1 with a real version
                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Queries on-chain transactions, excluding pending transactions. +Use this function to retrieve historical transactions from the blockchain.

                                            +

                                            Parameters

                                            • Optionalargs: { options?: PaginationArgs }

                                              Optional parameters for pagination.

                                              +

                                            Returns Promise<TransactionResponse[]>

                                            An array of on-chain transactions.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Fetch transactions with pagination
                                            const transactions = await aptos.getTransactions({
                                            options: {
                                            offset: 0, // Start from the first transaction
                                            limit: 10, // Limit to 10 results
                                            },
                                            });

                                            console.log(transactions);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Defines if the specified transaction is currently in a pending state. +This function helps you determine the status of a transaction using its hash.

                                            +

                                            Parameters

                                            • args: { transactionHash: HexInput }

                                              The arguments for the function.

                                              +
                                              • transactionHash: HexInput

                                                A hash of the transaction in hexadecimal format.

                                                +

                                            Returns Promise<boolean>

                                            true if the transaction is in a pending state and false otherwise.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Check if the transaction is pending using its hash
                                            const isPendingTransaction = await aptos.isPendingTransaction({ transactionHash: "0x123" }); // replace with a real transaction hash
                                            console.log("Is the transaction pending?", isPendingTransaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Generates a transaction to publish a Move package to the blockchain. +This function helps you create a transaction that can be simulated or submitted to the chain for publishing a package.

                                            +

                                            To get the metadataBytes and byteCode, can compile using Aptos CLI with command +aptos move compile --save-metadata ...,

                                            +

                                            https://aptos.dev/tutorials/your-first-dapp/#step-4-publish-a-move-module

                                            +

                                            Parameters

                                            Returns Promise<SimpleTransaction>

                                            A SimpleTransaction that can be simulated or submitted to the chain.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Replace with a real account address
                                            const account = "0x1";
                                            const metadataBytes = "0x..."; // replace with real metadata bytes
                                            const byteCode = "0x..."; // replace with real module bytecode

                                            const transaction = await aptos.publishPackageTransaction({
                                            account,
                                            metadataBytes,
                                            moduleBytecode: [byteCode],
                                            });

                                            console.log(transaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Rotates the authentication key for a given account. Once an account is rotated, only the new private key +or keyless signing scheme can be used to sign transactions for the account.

                                            +

                                            Parameters

                                            Returns Promise<SimpleTransaction>

                                            SimpleTransaction that can be submitted to rotate the auth key

                                            +

                                            This function supports three modes of rotation:

                                            +
                                              +
                                            1. Using a target Account object (toAccount)
                                            2. +
                                            3. Using a new private key (toNewPrivateKey)
                                            4. +
                                            +

                                            For Ed25519 accounts, the function will use a challenge-based rotation that requires signatures from both the old and new keys. +For multi-key accounts like MultiEd25519Account, the function will use a challenge-based rotation that requires signatures from both keys. +For other account types, the function will use an unverified rotation that only requires the new public key.

                                            +
                                            // Create and submit transaction to rotate the auth key
                                            const transaction = await aptos.rotateAuthKey({
                                            fromAccount,
                                            toAccount: toAccount,
                                            });

                                            // Sign and submit the transaction
                                            const pendingTransaction = await aptos.signAndSubmitTransaction({
                                            signer: fromAccount,
                                            transaction,
                                            }); +
                                            + +
                                          • Rotates the authentication key for a given account without verifying the new key.

                                            +

                                            Accounts with their auth key rotated via this function will be derivable via the getAccountsForPublicKey and +deriveOwnedAccountsFromSigner functions however the public key will be unverified (no proof of ownership). Thus +includeUnverified must be set to true to derive the account until the public key is verified via signing a transaction.

                                            +

                                            Parameters

                                            Returns Promise<SimpleTransaction>

                                            A simple transaction object that can be submitted to the network.

                                            +
                                            // Create and submit transaction to rotate the auth key
                                            const transaction = await aptos.rotateAuthKeyUnverified({
                                            fromAccount,
                                            toNewPublicKey,
                                            });

                                            // Sign and submit the transaction
                                            const pendingTransaction = await aptos.signAndSubmitTransaction({
                                            signer: fromAccount,
                                            transaction,
                                            }); +
                                            + +
                                          • Sign a transaction that can later be submitted to the chain. +This function is essential for ensuring the authenticity of the transaction by using the provided account's signing capabilities.

                                            +

                                            Parameters

                                            Returns AccountAuthenticator

                                            AccountAuthenticator - The authenticator for the signed transaction.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            const sender = Account.generate(); // Generate a new account for signing
                                            const transaction = await aptos.transaction.build.simple({
                                            sender: sender.accountAddress,
                                            data: {
                                            function: "0x1::aptos_account::transfer",
                                            functionArguments: [ "0x1", 100 ], // replace with a real account address and amount
                                            },
                                            });

                                            const signedTransaction = await aptos.transaction.sign({
                                            signer: sender,
                                            transaction,
                                            }); // Sign the transaction

                                            console.log("Signed Transaction:", signedTransaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Sign and submit a single signer transaction to the blockchain. +This function allows you to execute a transaction after signing it with the specified account.

                                            +

                                            Parameters

                                            Returns Promise<PendingTransactionResponse>

                                            PendingTransactionResponse

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            const sender = Account.generate(); // Generate a new account for sending the transaction
                                            const transaction = await aptos.transaction.build.simple({
                                            sender: sender.accountAddress,
                                            data: {
                                            function: "0x1::aptos_account::transfer",
                                            functionArguments: [ "0x1", 100 ], // replace with a real account address
                                            },
                                            });

                                            // Sign and submit the transaction
                                            const pendingTransaction = await aptos.signAndSubmitTransaction({
                                            signer: sender,
                                            transaction,
                                            });

                                            console.log(pendingTransaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Sign a transaction as a fee payer that can later be submitted to the chain. +This function ensures that the transaction is marked with the fee payer's address, allowing it to be processed correctly.

                                            +

                                            Parameters

                                            • args: { signer: Account; transaction: AnyRawTransaction }

                                              The arguments for signing the transaction.

                                              +
                                              • signer: Account

                                                The fee payer signer account.

                                                +
                                              • transaction: AnyRawTransaction

                                                A raw transaction to sign on. This transaction must include a feePayerAddress property.

                                                +

                                            Returns AccountAuthenticator

                                            AccountAuthenticator - The authenticator for the signed transaction.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            const sender = Account.generate(); // Generate a new account for the fee payer
                                            const transaction = await aptos.transaction.build.simple({
                                            // All transactions on Aptos are implemented via smart contracts.
                                            function: "0x1::aptos_account::transfer",
                                            functionArguments: [sender.accountAddress, 100],
                                            feePayerAddress: sender.accountAddress, // Set the fee payer address
                                            });

                                            const signedTransaction = await aptos.transaction.signAsFeePayer({
                                            signer: sender,
                                            transaction,
                                            });

                                            console.log("Signed transaction as fee payer:", signedTransaction);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          • Waits for a transaction to move past the pending state and provides the transaction response. +There are 4 cases.

                                            +
                                              +
                                            1. Transaction is successfully processed and committed to the chain. +
                                                +
                                              • The function will resolve with the transaction response from the API.
                                              • +
                                              +
                                            2. +
                                            3. Transaction is rejected for some reason, and is therefore not committed to the blockchain. +
                                                +
                                              • The function will throw an AptosApiError with an HTTP status code indicating some problem with the request.
                                              • +
                                              +
                                            4. +
                                            5. Transaction is committed but execution failed, meaning no changes were +written to the blockchain state. +
                                                +
                                              • If checkSuccess is true, the function will throw a FailedTransactionError +If checkSuccess is false, the function will resolve with the transaction response where the success field is false.
                                              • +
                                              +
                                            6. +
                                            7. Transaction does not move past the pending state within args.options.timeoutSecs seconds. +
                                                +
                                              • The function will throw a WaitForTransactionError
                                              • +
                                              +
                                            8. +
                                            +

                                            Parameters

                                            Returns Promise<CommittedTransactionResponse>

                                            The transaction on-chain response.

                                            +
                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                            const config = new AptosConfig({ network: Network.TESTNET });
                                            const aptos = new Aptos(config);

                                            async function runExample() {
                                            // Wait for a transaction to complete using its hash
                                            const transactionHash = "0x123"; // replace with a real transaction hash
                                            const transactionResponse = await aptos.waitForTransaction({
                                            transactionHash,
                                            options: {
                                            timeoutSecs: 30, // specify your own timeout if needed
                                            checkSuccess: true,
                                            },
                                            });

                                            console.log(transactionResponse);
                                            }
                                            runExample().catch(console.error); +
                                            + +
                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AptosApiError.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AptosApiError.html new file mode 100644 index 000000000..4cc214ab0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AptosApiError.html @@ -0,0 +1,45 @@ +AptosApiError | @aptos-labs/ts-sdk - v7.0.0
                                          @aptos-labs/ts-sdk - v7.0.0
                                            Preparing search index...

                                            Class AptosApiError

                                            Represents an error returned from the Aptos API. +This class encapsulates the details of the error, including the request URL, response status, and additional data.

                                            +

                                            The name of the error, which is always "AptosApiError".

                                            +

                                            The URL to which the request was made.

                                            +

                                            The HTTP response status code (e.g., 400).

                                            +

                                            The message associated with the response status.

                                            +

                                            The response data returned from the API.

                                            +

                                            The original AptosRequest that triggered the error.

                                            +

                                            Hierarchy

                                            • Error
                                              • AptosApiError
                                            Index

                                            Methods

                                            • Creates a .stack property on targetObject, which when accessed returns +a string representing the location in the code at which +Error.captureStackTrace() was called.

                                              +
                                              const myObject = {};
                                              Error.captureStackTrace(myObject);
                                              myObject.stack; // Similar to `new Error().stack` +
                                              + +

                                              The first line of the trace will be prefixed with +${myObject.name}: ${myObject.message}.

                                              +

                                              The optional constructorOpt argument accepts a function. If given, all frames +above constructorOpt, including constructorOpt, will be omitted from the +generated stack trace.

                                              +

                                              The constructorOpt argument is useful for hiding implementation +details of error generation from the user. For instance:

                                              +
                                              function a() {
                                              b();
                                              }

                                              function b() {
                                              c();
                                              }

                                              function c() {
                                              // Create an error without stack trace to avoid calculating the stack trace twice.
                                              const { stackTraceLimit } = Error;
                                              Error.stackTraceLimit = 0;
                                              const error = new Error();
                                              Error.stackTraceLimit = stackTraceLimit;

                                              // Capture the stack trace above function b
                                              Error.captureStackTrace(error, b); // Neither function c, nor b is included in the stack trace
                                              throw error;
                                              }

                                              a(); +
                                              + +

                                              Parameters

                                              • targetObject: object
                                              • OptionalconstructorOpt: Function

                                              Returns void

                                            Properties

                                            cause?: unknown
                                            data: any
                                            message: string
                                            name: string
                                            request: AptosRequest
                                            stack?: string
                                            status: number
                                            statusText: string
                                            url: string
                                            stackTraceLimit: number

                                            The Error.stackTraceLimit property specifies the number of stack frames +collected by a stack trace (whether generated by new Error().stack or +Error.captureStackTrace(obj)).

                                            +

                                            The default value is 10 but may be set to any valid JavaScript number. Changes +will affect any stack trace captured after the value has been changed.

                                            +

                                            If set to a non-number value, or set to a negative number, stack traces will +not capture any frames.

                                            +
                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AptosConfig.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AptosConfig.html new file mode 100644 index 000000000..72d6f95e8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AptosConfig.html @@ -0,0 +1,70 @@ +AptosConfig | @aptos-labs/ts-sdk - v7.0.0
                                            @aptos-labs/ts-sdk - v7.0.0
                                              Preparing search index...

                                              Class AptosConfig

                                              Represents the configuration settings for an Aptos SDK client instance. +This class allows customization of various endpoints and client settings.

                                              +
                                              import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                              async function runExample() {
                                              // Create a configuration for connecting to the Aptos testnet
                                              const config = new AptosConfig({ network: Network.TESTNET });

                                              // Initialize the Aptos client with the configuration
                                              const aptos = new Aptos(config);

                                              console.log("Aptos client initialized:", aptos);
                                              }
                                              runExample().catch(console.error); +
                                              + +
                                              Index

                                              Client

                                              • Initializes an instance of the Aptos client with the specified settings. +This allows users to configure various aspects of the client, such as network and endpoints.

                                                +

                                                Parameters

                                                • Optionalsettings: AptosSettings

                                                  Optional configuration settings for the Aptos client.

                                                  +

                                                  Configuration options for initializing the SDK, allowing customization of its behavior and interaction with the Aptos network.

                                                  +
                                                  • Optional Readonlyclient?: Client
                                                  • Optional ReadonlyclientConfig?: ClientConfig
                                                  • Optional Readonlyfaucet?: string
                                                  • Optional ReadonlyfaucetConfig?: FaucetConfig
                                                  • Optional Readonlyfullnode?: string
                                                  • Optional ReadonlyfullnodeConfig?: FullNodeConfig
                                                  • Optional Readonlyindexer?: string
                                                  • Optional ReadonlyindexerConfig?: IndexerConfig
                                                  • Optional Readonlynetwork?: Network
                                                  • Optional Readonlypepper?: string
                                                  • Optional ReadonlypluginSettings?: PluginSettings
                                                  • Optional Readonlyprover?: string
                                                  • Optional ReadonlytransactionGenerationConfig?: TransactionGenerationConfig

                                                Returns AptosConfig

                                                import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                async function runExample() {
                                                // Create a new Aptos client with default settings
                                                const config = new AptosConfig({ network: Network.TESTNET }); // Specify the network
                                                const aptos = new Aptos(config);

                                                console.log("Aptos client initialized:", aptos);
                                                }
                                                runExample().catch(console.error); +
                                                + +
                                              client: Client

                                              The client instance the SDK uses. Defaults to `@aptos-labs/aptos-client

                                              +
                                              clientConfig?: ClientConfig

                                              Optional client configurations

                                              +
                                              faucet?: string

                                              The optional hardcoded faucet URL to send requests to instead of using the network

                                              +
                                              faucetConfig?: FaucetConfig

                                              Optional specific Faucet configurations

                                              +
                                              fullnode?: string

                                              The optional hardcoded fullnode URL to send requests to instead of using the network

                                              +
                                              fullnodeConfig?: ClientHeadersType

                                              Optional specific Fullnode configurations

                                              +
                                              indexer?: string

                                              The optional hardcoded indexer URL to send requests to instead of using the network

                                              +
                                              indexerConfig?: ClientHeadersType

                                              Optional specific Indexer configurations

                                              +
                                              network: Network

                                              The Network that this SDK is associated with. Defaults to DEVNET

                                              +
                                              pepper?: string

                                              The optional hardcoded pepper service URL to send requests to instead of using the network

                                              +
                                              prover?: string

                                              The optional hardcoded prover service URL to send requests to instead of using the network

                                              +
                                              transactionGenerationConfig?: TransactionGenerationConfig

                                              Optional specific Transaction Generation configurations

                                              +
                                              • Returns the URL endpoint to send the request to based on the specified API type. +If a custom URL was provided in the configuration, that URL is returned. Otherwise, the URL endpoint is derived from the network.

                                                +

                                                Parameters

                                                • apiType: AptosApiType

                                                  The type of Aptos API to get the URL for. This can be one of the following: FULLNODE, FAUCET, INDEXER, PEPPER, PROVER.

                                                  +

                                                Returns string

                                                import { Aptos, AptosConfig, Network, AptosApiType } from "@aptos-labs/ts-sdk";

                                                const config = new AptosConfig({ network: Network.TESTNET });
                                                const aptos = new Aptos(config);

                                                async function runExample() {
                                                // Getting the request URL for the FULLNODE API
                                                const url = config.getRequestUrl(AptosApiType.FULLNODE);
                                                console.log("Request URL for FULLNODE:", url);
                                                }
                                                runExample().catch(console.error); +
                                                + +
                                              • Checks if the provided URL is a known pepper service endpoint.

                                                +

                                                Parameters

                                                • url: string

                                                  The URL to check against the known pepper service endpoints.

                                                  +

                                                Returns boolean

                                                import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                const config = new AptosConfig({ network: Network.TESTNET });
                                                const aptos = new Aptos(config);

                                                async function runExample() {
                                                const url = "https://example.pepper.service"; // replace with a real pepper service URL

                                                // Check if the URL is a known pepper service endpoint
                                                const isPepperService = config.isPepperServiceRequest(url);

                                                console.log(`Is the URL a known pepper service? ${isPepperService}`);
                                                }
                                                runExample().catch(console.error); +
                                                + +
                                              • Checks if the provided URL is a known prover service endpoint.

                                                +

                                                Parameters

                                                • url: string

                                                  The URL to check against known prover service endpoints.

                                                  +

                                                Returns boolean

                                                A boolean indicating whether the URL is a known prover service endpoint.

                                                +
                                                import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                const config = new AptosConfig({ network: Network.TESTNET });
                                                const aptos = new Aptos(config);

                                                // Check if the URL is a known prover service endpoint
                                                const url = "https://prover.testnet.aptos.dev"; // replace with a real URL if needed
                                                const isProver = config.isProverServiceRequest(url);

                                                console.log(`Is the URL a known prover service? ${isProver}`); +
                                                + +
                                              • If you have set a custom transaction submitter, you can use this to determine +whether to use it or not. For example, to stop using the transaction submitter:

                                                +

                                                Parameters

                                                • ignore: boolean

                                                Returns void

                                                aptos.config.setIgnoreTransactionSubmitter(true);
                                                +
                                                + +

                                              Methods

                                              • If a custom transaction submitter has been specified in the PluginConfig and +IGNORE_TRANSACTION_SUBMITTER is false, this will return a transaction submitter +that should be used instead of the default transaction submission behavior.

                                                +

                                                Returns TransactionSubmitter | undefined

                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/AuthenticationKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AuthenticationKey.html new file mode 100644 index 000000000..97bcdbd39 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/AuthenticationKey.html @@ -0,0 +1,64 @@ +AuthenticationKey | @aptos-labs/ts-sdk - v7.0.0
                                              @aptos-labs/ts-sdk - v7.0.0
                                                Preparing search index...

                                                Class AuthenticationKey

                                                Represents an authentication key used for account management. Each account stores an authentication key that enables account +owners to rotate their private key(s) without changing the address that hosts their account. The authentication key is a +SHA3-256 hash of data and is always 32 bytes in length.

                                                +

                                                Account Basics

                                                +

                                                Account addresses can be derived from the AuthenticationKey.

                                                +

                                                Hierarchy (View Summary)

                                                Index

                                                Implementation - BCS

                                                • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                  +

                                                  Returns Uint8Array

                                                  the BCS representation of the Serializable instance as a byte buffer.

                                                  +
                                                • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                  +

                                                  Returns Hex

                                                  A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                  +

                                                Implementation - Serialization

                                                • Creates an instance of the AuthenticationKey using the provided hex input. +This ensures that the hex input is valid and conforms to the required length for an Authentication Key.

                                                  +

                                                  Parameters

                                                  • args: { data: HexInput }

                                                    The arguments for constructing the AuthenticationKey.

                                                    +
                                                    • data: HexInput

                                                      The hex input data to be used for the Authentication Key.

                                                      +

                                                  Returns AuthenticationKey

                                                  Throws an error if the length of the provided hex input is not equal to the required Authentication Key +length.

                                                  +
                                                data: Hex

                                                The raw bytes of the authentication key.

                                                +
                                                LENGTH: number = 32

                                                An authentication key is always a SHA3-256 hash of data, and is always 32 bytes.

                                                +

                                                The data to hash depends on the underlying public key type and the derivation scheme.

                                                +
                                                • Convert the internal data representation to a Uint8Array.

                                                  +

                                                  This function is useful for obtaining a byte representation of the data, which can be utilized for serialization or transmission.

                                                  +

                                                  Returns Uint8Array

                                                  Uint8Array representation of the internal data.

                                                  +

                                                Methods

                                                • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                  +

                                                  Returns string

                                                  the hex formatas a string prefixed by 0x.

                                                  +
                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Bool.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Bool.html new file mode 100644 index 000000000..4cc979af3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Bool.html @@ -0,0 +1,40 @@ +Bool | @aptos-labs/ts-sdk - v7.0.0
                                                @aptos-labs/ts-sdk - v7.0.0
                                                  Preparing search index...

                                                  Class Bool

                                                  Represents a boolean value that can be serialized and deserialized. +This class extends the Serializable class and provides methods to serialize +the boolean value for different contexts, such as entry functions and script functions.

                                                  +

                                                  Hierarchy (View Summary)

                                                  Implements

                                                  Index

                                                  Implementation - BCS

                                                  • Constructs a new instance with a specified value. +This ensures that the value is validated to be within the acceptable range.

                                                    +

                                                    Parameters

                                                    • value: boolean

                                                      The number to be validated and assigned, which must be between 0 and MAX_U256_BIG_INT.

                                                      +

                                                    Returns Bool

                                                  • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                    +

                                                    Returns Hex

                                                    A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                    +
                                                  • Serializes the current instance for use in an entry function by converting it to a byte sequence. +This allows the instance to be properly formatted for serialization in transactions. +Uses the optimized serializeAsBytes method to reduce allocations.

                                                    +

                                                    Parameters

                                                    • serializer: Serializer

                                                      The serializer instance used to serialize the byte sequence.

                                                      +

                                                    Returns void

                                                  Methods

                                                  • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                    +

                                                    Returns string

                                                    the hex formatas a string prefixed by 0x.

                                                    +

                                                  Properties

                                                  value: boolean
                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/ChainId.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/ChainId.html new file mode 100644 index 000000000..ea4a7d46e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/ChainId.html @@ -0,0 +1,28 @@ +ChainId | @aptos-labs/ts-sdk - v7.0.0
                                                  @aptos-labs/ts-sdk - v7.0.0
                                                    Preparing search index...

                                                    Class ChainId

                                                    Represents a ChainId that can be serialized and deserialized.

                                                    +

                                                    Hierarchy (View Summary)

                                                    Index

                                                    Implementation - BCS

                                                    Implementation - Transactions

                                                    Methods

                                                    Properties

                                                    Implementation - BCS

                                                    • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                      +

                                                      Returns Uint8Array

                                                      the BCS representation of the Serializable instance as a byte buffer.

                                                      +
                                                    • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                      +

                                                      Returns Hex

                                                      A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                      +

                                                    Implementation - Transactions

                                                    Methods

                                                    • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                      +

                                                      Returns string

                                                      the hex formatas a string prefixed by 0x.

                                                      +

                                                    Properties

                                                    chainId: number
                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/DerivableAbstractedAccount.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/DerivableAbstractedAccount.html new file mode 100644 index 000000000..a34fe1f93 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/DerivableAbstractedAccount.html @@ -0,0 +1,143 @@ +DerivableAbstractedAccount | @aptos-labs/ts-sdk - v7.0.0
                                                    @aptos-labs/ts-sdk - v7.0.0
                                                      Preparing search index...

                                                      Class DerivableAbstractedAccount

                                                      Abstract class representing a generic Aptos account.

                                                      +

                                                      This class serves as a single entry point for account generation, allowing accounts to be created +either through Account.generate() or Account.fromDerivationPath. Although it is defined as an +abstract class, it should be treated as an interface and enforced using the implements keyword.

                                                      +

                                                      Note: Generating an account instance does not create the account on-chain.

                                                      +

                                                      Hierarchy (View Summary)

                                                      Index

                                                      Implementation - Account (On-Chain Model)

                                                      accountAddress: AccountAddress

                                                      Account address associated with the account

                                                      +

                                                      Public key associated with the account

                                                      +
                                                      sign: (message: HexInput) => AbstractSignature

                                                      Sign the given message using the available signing capabilities.

                                                      +

                                                      Type Declaration

                                                      signingScheme: SingleKey = SigningScheme.SingleKey

                                                      Signing scheme used to sign transactions

                                                      +
                                                      • Verify the given message and signature with the public key. It fetches any on chain state if needed for verification.

                                                        +

                                                        Parameters

                                                        • args: { aptosConfig: AptosConfig; message: HexInput; signature: Signature }

                                                          The arguments for verifying the signature.

                                                          +
                                                          • aptosConfig: AptosConfig

                                                            The configuration object for connecting to the Aptos network

                                                            +
                                                          • message: HexInput

                                                            Raw message data in HexInput format.

                                                            +
                                                          • signature: Signature

                                                            Signed message signature.

                                                            +

                                                        Returns Promise<boolean>

                                                        A boolean indicating whether the signature is valid.

                                                        +

                                                      Constructors

                                                      Methods

                                                      • Compute the account address of the DAA +The DAA account address is computed by hashing the function info and the account identity +and appending the domain separator (5)

                                                        +

                                                        Parameters

                                                        • functionInfo: string

                                                          The authentication function

                                                          +
                                                        • accountIdentifier: Uint8Array

                                                          The account identity

                                                          +

                                                        Returns Uint8Array

                                                        The account address

                                                        +

                                                      Properties

                                                      abstractPublicKey: Uint8Array

                                                      The abstract public key that is used to identify the account. +Depends on the use cases, most of the time it is the public key of the source wallet

                                                      +
                                                      authenticationFunction: string
                                                      ADDRESS_DOMAIN_SEPERATOR: number = 5

                                                      The domain separator used to calculate the DAA account address.

                                                      +
                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Deserializer.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Deserializer.html new file mode 100644 index 000000000..cdf213648 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Deserializer.html @@ -0,0 +1,161 @@ +Deserializer | @aptos-labs/ts-sdk - v7.0.0
                                                      @aptos-labs/ts-sdk - v7.0.0
                                                        Preparing search index...

                                                        Class Deserializer

                                                        A class that provides methods for deserializing various data types from a byte buffer. +It supports deserialization of primitive types, strings, and complex objects using a BCS (Binary Common Serialization) layout.

                                                        +
                                                        Index

                                                        Implementation - BCS

                                                        • Creates a new instance of the class with a copy of the provided data buffer. +This prevents outside mutation of the buffer.

                                                          +

                                                          Parameters

                                                          • data: Uint8Array

                                                            The data to be copied into the internal buffer as a Uint8Array.

                                                            +

                                                          Returns Deserializer

                                                        • Asserts that the buffer has no remaining bytes.

                                                          +

                                                          Returns void

                                                          Throws an error if there are remaining bytes in the buffer.

                                                          +
                                                        • Helper function that primarily exists to support alternative syntax for deserialization. +That is, if we have a const deserializer: new Deserializer(...), instead of having to use +MyClass.deserialize(deserializer), we can call deserializer.deserialize(MyClass).

                                                          +

                                                          Type Parameters

                                                          • T

                                                          Parameters

                                                          • cls: Deserializable<T>

                                                            The BCS-deserializable class to deserialize the buffered bytes into.

                                                            +

                                                          Returns T

                                                          the deserialized value of class type T

                                                          +
                                                          const deserializer = new Deserializer(new Uint8Array([1, 2, 3]));
                                                          const value = deserializer.deserialize(MyClass); // where MyClass has a `deserialize` function
                                                          // value is now an instance of MyClass
                                                          // equivalent to `const value = MyClass.deserialize(deserializer)` +
                                                          + +
                                                        • Deserializes a boolean value from a byte stream.

                                                          +

                                                          The BCS layout for a boolean uses one byte, where "0x01" represents true and "0x00" represents false. +An error is thrown if the byte value is not valid.

                                                          +

                                                          Returns boolean

                                                          The deserialized boolean value.

                                                          +

                                                          Throws an error if the boolean value is invalid.

                                                          +
                                                        • Deserializes an array of bytes.

                                                          +

                                                          The BCS layout for "bytes" consists of a bytes_length followed by the bytes themselves, where bytes_length is a u32 integer +encoded as a uleb128 integer, indicating the length of the bytes array.

                                                          +

                                                          Returns Uint8Array

                                                          The deserialized array of bytes (a copy, safe to modify).

                                                          +

                                                          If the length exceeds the maximum allowed (10MB) to prevent memory exhaustion.

                                                          +
                                                        • Deserializes an array of bytes of a specified length.

                                                          +

                                                          Parameters

                                                          • len: number

                                                            The number of bytes to read from the source.

                                                            +

                                                          Returns Uint8Array

                                                          The deserialized array of bytes (a copy, safe to modify).

                                                          +
                                                        • Deserializes a 128-bit signed integer from its binary representation. +This function combines two 64-bit values to return a single int128 value in little-endian format.

                                                          +

                                                          Returns bigint

                                                          The deserialized int128 number.

                                                          +
                                                        • Deserializes a 16-bit signed integer from a binary format in little-endian representation. +BCS layout for "int16": Two bytes.

                                                          +

                                                          Returns number

                                                          The deserialized int16 number.

                                                          +
                                                        • Deserializes a 256-bit signed integer from its binary representation. +BCS layout for "int256": Thirty-two bytes in little-endian format.

                                                          +

                                                          Returns bigint

                                                          The deserialized int256 number.

                                                          +
                                                        • Deserializes a 32-bit signed integer from a binary format in little-endian representation. +BCS layout for "int32": Four bytes.

                                                          +

                                                          Returns number

                                                          The deserialized int32 number.

                                                          +
                                                        • Deserializes a 64-bit signed integer. +This function combines two 32-bit values to return a 64-bit signed integer in little-endian representation.

                                                          +

                                                          Returns bigint

                                                          The deserialized int64 number.

                                                          +
                                                        • Deserializes an 8-bit signed integer from the binary data. +BCS layout for "int8": One byte. Binary format in little-endian representation.

                                                          +

                                                          Returns number

                                                          The deserialized int8 number.

                                                          +
                                                        • Deserializes an optional value from the buffer.

                                                          +

                                                          The BCS layout for Optional starts with a boolean byte (0 if none, 1 if some), +followed by the value if present.

                                                          +

                                                          Parameters

                                                          • type: "string"

                                                            Either a Deserializable class or one of the string literals: "string", "bytes", or "fixedBytes"

                                                            +

                                                          Returns string | undefined

                                                          The deserialized value if present, undefined otherwise

                                                          +

                                                          When "fixedBytes" is specified without a length

                                                          +
                                                          // Deserialize an optional string
                                                          const deserializer = new Deserializer(new Uint8Array([1, 3, 97, 98, 99]));
                                                          const optStr = deserializer.deserializeOption("string");
                                                          // optStr === "abc"

                                                          // Deserialize an optional custom type
                                                          const deserializer = new Deserializer(new Uint8Array([0]));
                                                          const optValue = deserializer.deserializeOption(MyClass);
                                                          // optValue === undefined

                                                          // Deserialize optional bytes
                                                          const deserializer = new Deserializer(new Uint8Array([1, 3, 1, 2, 3]));
                                                          const optBytes = deserializer.deserializeOption("bytes");
                                                          // optBytes === Uint8Array[1, 2, 3]

                                                          // Deserialize optional fixed bytes
                                                          const deserializer = new Deserializer(new Uint8Array([1, 1, 2, 3, 4]));
                                                          const optBytes = deserializer.deserializeOption("fixedBytes", 4);
                                                          // optBytes === Uint8Array[1, 2, 3, 4] +
                                                          + +
                                                        • Deserializes an optional value from the buffer.

                                                          +

                                                          The BCS layout for Optional starts with a boolean byte (0 if none, 1 if some), +followed by the value if present.

                                                          +

                                                          Parameters

                                                          • type: "bytes"

                                                            Either a Deserializable class or one of the string literals: "string", "bytes", or "fixedBytes"

                                                            +

                                                          Returns Uint8Array<ArrayBufferLike> | undefined

                                                          The deserialized value if present, undefined otherwise

                                                          +

                                                          When "fixedBytes" is specified without a length

                                                          +
                                                          // Deserialize an optional string
                                                          const deserializer = new Deserializer(new Uint8Array([1, 3, 97, 98, 99]));
                                                          const optStr = deserializer.deserializeOption("string");
                                                          // optStr === "abc"

                                                          // Deserialize an optional custom type
                                                          const deserializer = new Deserializer(new Uint8Array([0]));
                                                          const optValue = deserializer.deserializeOption(MyClass);
                                                          // optValue === undefined

                                                          // Deserialize optional bytes
                                                          const deserializer = new Deserializer(new Uint8Array([1, 3, 1, 2, 3]));
                                                          const optBytes = deserializer.deserializeOption("bytes");
                                                          // optBytes === Uint8Array[1, 2, 3]

                                                          // Deserialize optional fixed bytes
                                                          const deserializer = new Deserializer(new Uint8Array([1, 1, 2, 3, 4]));
                                                          const optBytes = deserializer.deserializeOption("fixedBytes", 4);
                                                          // optBytes === Uint8Array[1, 2, 3, 4] +
                                                          + +
                                                        • Deserializes an optional value from the buffer.

                                                          +

                                                          The BCS layout for Optional starts with a boolean byte (0 if none, 1 if some), +followed by the value if present.

                                                          +

                                                          Parameters

                                                          • type: "fixedBytes"

                                                            Either a Deserializable class or one of the string literals: "string", "bytes", or "fixedBytes"

                                                            +
                                                          • len: number

                                                            Required length when type is "fixedBytes", ignored otherwise

                                                            +

                                                          Returns Uint8Array<ArrayBufferLike> | undefined

                                                          The deserialized value if present, undefined otherwise

                                                          +

                                                          When "fixedBytes" is specified without a length

                                                          +
                                                          // Deserialize an optional string
                                                          const deserializer = new Deserializer(new Uint8Array([1, 3, 97, 98, 99]));
                                                          const optStr = deserializer.deserializeOption("string");
                                                          // optStr === "abc"

                                                          // Deserialize an optional custom type
                                                          const deserializer = new Deserializer(new Uint8Array([0]));
                                                          const optValue = deserializer.deserializeOption(MyClass);
                                                          // optValue === undefined

                                                          // Deserialize optional bytes
                                                          const deserializer = new Deserializer(new Uint8Array([1, 3, 1, 2, 3]));
                                                          const optBytes = deserializer.deserializeOption("bytes");
                                                          // optBytes === Uint8Array[1, 2, 3]

                                                          // Deserialize optional fixed bytes
                                                          const deserializer = new Deserializer(new Uint8Array([1, 1, 2, 3, 4]));
                                                          const optBytes = deserializer.deserializeOption("fixedBytes", 4);
                                                          // optBytes === Uint8Array[1, 2, 3, 4] +
                                                          + +
                                                        • Deserializes an optional value from the buffer.

                                                          +

                                                          The BCS layout for Optional starts with a boolean byte (0 if none, 1 if some), +followed by the value if present.

                                                          +

                                                          Type Parameters

                                                          • T

                                                            The type of the value to deserialize

                                                            +

                                                          Parameters

                                                          • type: Deserializable<T>

                                                            Either a Deserializable class or one of the string literals: "string", "bytes", or "fixedBytes"

                                                            +

                                                          Returns T | undefined

                                                          The deserialized value if present, undefined otherwise

                                                          +

                                                          When "fixedBytes" is specified without a length

                                                          +
                                                          // Deserialize an optional string
                                                          const deserializer = new Deserializer(new Uint8Array([1, 3, 97, 98, 99]));
                                                          const optStr = deserializer.deserializeOption("string");
                                                          // optStr === "abc"

                                                          // Deserialize an optional custom type
                                                          const deserializer = new Deserializer(new Uint8Array([0]));
                                                          const optValue = deserializer.deserializeOption(MyClass);
                                                          // optValue === undefined

                                                          // Deserialize optional bytes
                                                          const deserializer = new Deserializer(new Uint8Array([1, 3, 1, 2, 3]));
                                                          const optBytes = deserializer.deserializeOption("bytes");
                                                          // optBytes === Uint8Array[1, 2, 3]

                                                          // Deserialize optional fixed bytes
                                                          const deserializer = new Deserializer(new Uint8Array([1, 1, 2, 3, 4]));
                                                          const optBytes = deserializer.deserializeOption("fixedBytes", 4);
                                                          // optBytes === Uint8Array[1, 2, 3, 4] +
                                                          + +
                                                        • Deserializes a UTF-8 encoded string from a byte array. It first reads the length of the string in bytes, +followed by the actual byte content, and decodes it into a string.

                                                          +

                                                          BCS layout for "string": string_length | string_content +where string_length is a u32 integer encoded as a uleb128 integer, equal to the number of bytes in string_content.

                                                          +

                                                          Returns string

                                                          const deserializer = new Deserializer(new Uint8Array([8, 49, 50, 51, 52, 97, 98, 99, 100]));
                                                          assert(deserializer.deserializeStr() === "1234abcd"); +
                                                          + +
                                                        • Deserializes a uint128 number from its binary representation. +This function combines two 64-bit values to return a single uint128 value in little-endian format.

                                                          +

                                                          Returns bigint

                                                          The deserialized uint128 number.

                                                          +
                                                        • Deserializes a uint16 number from a binary format in little-endian representation.

                                                          +

                                                          BCS layout for "uint16": Two bytes.

                                                          +

                                                          Returns number

                                                          const deserializer = new Deserializer(new Uint8Array([0x34, 0x12]));
                                                          assert(deserializer.deserializeU16() === 4660); +
                                                          + +
                                                        • Deserializes a uint256 number from its binary representation.

                                                          +

                                                          The BCS layout for "uint256" consists of thirty-two bytes in little-endian format.

                                                          +

                                                          Returns bigint

                                                          The deserialized uint256 number.

                                                          +
                                                        • Deserializes a uint32 number from a binary format in little-endian representation.

                                                          +

                                                          BCS layout for "uint32": Four bytes.

                                                          +

                                                          Returns number

                                                          const deserializer = new Deserializer(new Uint8Array([0x78, 0x56, 0x34, 0x12]));
                                                          assert(deserializer.deserializeU32() === 305419896); +
                                                          + +
                                                        • Deserializes a uint64 number.

                                                          +

                                                          This function combines two 32-bit values to return a 64-bit unsigned integer in little-endian representation.

                                                          +

                                                          Returns bigint

                                                          const deserializer = new Deserializer(new Uint8Array([0x00, 0xEF, 0xCD, 0xAB, 0x78, 0x56, 0x34, 0x12]));
                                                          assert(deserializer.deserializeU64() === 1311768467750121216); +
                                                          + +
                                                        • Deserializes a uint8 number from the binary data.

                                                          +

                                                          BCS layout for "uint8": One byte. Binary format in little-endian representation.

                                                          +

                                                          Returns number

                                                          The deserialized uint8 number.

                                                          +
                                                        • Deserializes a uleb128 encoded uint32 number.

                                                          +

                                                          This function is used for interpreting lengths of variable-length sequences and tags of enum values in BCS encoding.

                                                          +

                                                          Returns number

                                                          The deserialized uint32 value.

                                                          +

                                                          Throws an error if the parsed value exceeds the maximum uint32 number.

                                                          +

                                                          Throws an error if the uleb128 encoding is malformed (too many bytes).

                                                          +
                                                        • Deserializes an array of BCS Deserializable values given an existing Deserializer instance with a loaded byte buffer.

                                                          +

                                                          Type Parameters

                                                          • T

                                                          Parameters

                                                          • cls: Deserializable<T>

                                                            The BCS-deserializable class to deserialize the buffered bytes into.

                                                            +

                                                          Returns T[]

                                                          An array of deserialized values of type T.

                                                          +
                                                          // serialize a vector of addresses
                                                          const addresses = new Array<AccountAddress>(
                                                          AccountAddress.from("0x1"),
                                                          AccountAddress.from("0x2"),
                                                          AccountAddress.from("0xa"),
                                                          AccountAddress.from("0xb"),
                                                          );
                                                          const serializer = new Serializer();
                                                          serializer.serializeVector(addresses);
                                                          const serializedBytes = serializer.toUint8Array();

                                                          // deserialize the bytes into an array of addresses
                                                          const deserializer = new Deserializer(serializedBytes);
                                                          const deserializedAddresses = deserializer.deserializeVector(AccountAddress);
                                                          // deserializedAddresses is now an array of AccountAddress instances +
                                                          + +
                                                        • Returns the number of bytes remaining in the buffer.

                                                          +

                                                          This information is useful to determine if there's more data to be read.

                                                          +

                                                          Returns number

                                                          The number of bytes remaining in the buffer.

                                                          +

                                                        Methods

                                                        • Returns string | undefined

                                                          The deserialized string if it exists, otherwise undefined.

                                                          +

                                                          use deserializeOption("string") instead.

                                                          +

                                                          The BCS layout for Optional is 0 if none, else 1 followed by the string length and string content.

                                                          +
                                                          const deserializer = new Deserializer(new Uint8Array([0x00]));
                                                          assert(deserializer.deserializeOptionStr() === undefined);
                                                          const deserializer = new Deserializer(new Uint8Array([1, 8, 49, 50, 51, 52, 97, 98, 99, 100]));
                                                          assert(deserializer.deserializeOptionStr() === "1234abcd"); +
                                                          + +
                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Ed25519Account.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Ed25519Account.html new file mode 100644 index 000000000..ca947086a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Ed25519Account.html @@ -0,0 +1,57 @@ +Ed25519Account | @aptos-labs/ts-sdk - v7.0.0
                                                        @aptos-labs/ts-sdk - v7.0.0
                                                          Preparing search index...

                                                          Class Ed25519Account

                                                          Represents an Ed25519 account that provides signing capabilities through an Ed25519 private key. +This class allows for the creation of accounts, signing messages and transactions, and verifying signatures.

                                                          +

                                                          Note: Generating an instance of this class does not create the account on-chain.

                                                          +

                                                          Implements

                                                          Index

                                                          Implementation - Account (On-Chain Model)

                                                          accountAddress: AccountAddress

                                                          Account address associated with the account

                                                          +
                                                          privateKey: Ed25519PrivateKey

                                                          Private key associated with the account

                                                          +
                                                          publicKey: Ed25519PublicKey

                                                          Public key associated with the account

                                                          +
                                                          signingScheme: Ed25519 = SigningScheme.Ed25519

                                                          Signing scheme used to sign transactions

                                                          +
                                                          • Verify the given message and signature with the public key.

                                                            +

                                                            Ed25519 signatures do not depend on chain state, so this function is equivalent to the synchronous verifySignature method.

                                                            +

                                                            Parameters

                                                            • args: { aptosConfig: AptosConfig; message: HexInput; signature: Signature }

                                                              The arguments for verifying the signature.

                                                              +
                                                              • aptosConfig: AptosConfig

                                                                The configuration object for connecting to the Aptos network

                                                                +
                                                              • message: HexInput

                                                                Raw message data in HexInput format.

                                                                +
                                                              • signature: Signature

                                                                Signed message signature.

                                                                +

                                                            Returns Promise<boolean>

                                                            A boolean indicating whether the signature is valid.

                                                            +
                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Ed25519PrivateKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Ed25519PrivateKey.html new file mode 100644 index 000000000..a48bbbb9e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Ed25519PrivateKey.html @@ -0,0 +1,75 @@ +Ed25519PrivateKey | @aptos-labs/ts-sdk - v7.0.0
                                                          @aptos-labs/ts-sdk - v7.0.0
                                                            Preparing search index...

                                                            Class Ed25519PrivateKey

                                                            Represents the private key of an Ed25519 key pair.

                                                            +

                                                            Hierarchy (View Summary)

                                                            Implements

                                                            Index

                                                            Implementation - BCS

                                                            • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                              +

                                                              Returns Uint8Array

                                                              the BCS representation of the Serializable instance as a byte buffer.

                                                              +
                                                            • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                              +

                                                              Returns Hex

                                                              A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                              +

                                                            Implementation - Serialization

                                                            LENGTH: number = 32

                                                            Length of an Ed25519 private key

                                                            +
                                                            SLIP_0010_SEED: "ed25519 seed"

                                                            The Ed25519 key seed to use for BIP-32 compatibility +See more https://github.com/satoshilabs/slips/blob/master/slip-0010.md

                                                            +
                                                            • Clears the private key from memory by overwriting it with random bytes. +After calling this method, the private key can no longer be used for signing or deriving public keys.

                                                              +

                                                              Note: Due to JavaScript's memory management, this cannot guarantee complete removal of +sensitive data from memory, but it significantly reduces the window of exposure.

                                                              +

                                                              Returns void

                                                            • Returns whether the private key has been cleared from memory.

                                                              +

                                                              Returns boolean

                                                              true if the key has been cleared, false otherwise

                                                              +
                                                            • Sign the given message with the private key. +This function generates a digital signature for the specified message, ensuring its authenticity and integrity.

                                                              +

                                                              Parameters

                                                              • message: HexInput

                                                                A message as a string or Uint8Array in HexInput format.

                                                                +

                                                              Returns Ed25519Signature

                                                              A digital signature for the provided message.

                                                              +

                                                              Error if the private key has been cleared from memory.

                                                              +
                                                            • Get the private key as a hex string with the 0x prefix.

                                                              +

                                                              Returns string

                                                              string representation of the private key.

                                                              +

                                                              Error if the private key has been cleared from memory.

                                                              +
                                                            • Get the private key in bytes (Uint8Array).

                                                              +

                                                              Returns Uint8Array

                                                              Uint8Array representation of the private key

                                                              +

                                                              Error if the private key has been cleared from memory.

                                                              +
                                                            • Derives a private key from a mnemonic seed phrase using a specified BIP44 path. +To derive multiple keys from the same phrase, change the path

                                                              +

                                                              IMPORTANT: Ed25519 supports hardened derivation only, as it lacks a key homomorphism, making non-hardened derivation impossible.

                                                              +

                                                              Parameters

                                                              • path: string

                                                                The BIP44 path used for key derivation.

                                                                +
                                                              • mnemonics: string

                                                                The mnemonic seed phrase from which the key will be derived.

                                                                +

                                                              Returns Ed25519PrivateKey

                                                              Error if the provided path is not a valid hardened path.

                                                              +

                                                            Methods

                                                            • Get the private key as a AIP-80 compliant hex string.

                                                              +

                                                              Read about AIP-80

                                                              +

                                                              Returns string

                                                              AIP-80 compliant string representation of the private key.

                                                              +

                                                              Error if the private key has been cleared from memory.

                                                              +
                                                            • Get the private key as a hex string with the 0x prefix.

                                                              +

                                                              Returns string

                                                              string representation of the private key.

                                                              +

                                                              Error if the private key has been cleared from memory.

                                                              +
                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Ed25519PublicKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Ed25519PublicKey.html new file mode 100644 index 000000000..94054212c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Ed25519PublicKey.html @@ -0,0 +1,63 @@ +Ed25519PublicKey | @aptos-labs/ts-sdk - v7.0.0
                                                            @aptos-labs/ts-sdk - v7.0.0
                                                              Preparing search index...

                                                              Class Ed25519PublicKey

                                                              Represents the public key of an Ed25519 key pair.

                                                              +

                                                              Since AIP-55 Aptos supports +Legacy and Unified authentication keys.

                                                              +

                                                              Ed25519 scheme is represented in the SDK as Legacy authentication key and also +as AnyPublicKey that represents any Unified authentication key.

                                                              +

                                                              Hierarchy (View Summary)

                                                              Index

                                                              Implementation - BCS

                                                              • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                +

                                                                Returns Uint8Array

                                                                the BCS representation of the Serializable instance as a byte buffer.

                                                                +
                                                              • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                +

                                                                Returns Hex

                                                                A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                +

                                                              Implementation - Serialization

                                                              LENGTH: number = 32

                                                              Length of an Ed25519 public key

                                                              +
                                                              • Serializes the data into a byte array using the provided serializer. +This allows for the conversion of data into a format suitable for transmission or storage.

                                                                +

                                                                Parameters

                                                                • serializer: Serializer

                                                                  The serializer instance used to perform the serialization.

                                                                  +

                                                                Returns void

                                                              • Note: Ed25519Signatures can be verified syncronously.

                                                                +

                                                                Verifies the provided signature against the given message. +This function helps ensure the integrity and authenticity of the message by confirming that the signature is valid.

                                                                +

                                                                Parameters

                                                                Returns Promise<boolean>

                                                                A boolean indicating whether the signature is valid for the given message.

                                                                +
                                                              • Determines if the provided public key is a valid Ed25519 public key. +This function checks for the presence of the "key" property and verifies that its data length matches the expected length +for Ed25519 public keys.

                                                                +

                                                                Parameters

                                                                • publicKey: PublicKey

                                                                  The public key to validate.

                                                                  +

                                                                Returns publicKey is Ed25519PublicKey

                                                                A boolean indicating whether the public key is a valid Ed25519 public key.

                                                                +

                                                              Methods

                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Ed25519Signature.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Ed25519Signature.html new file mode 100644 index 000000000..2b7963588 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Ed25519Signature.html @@ -0,0 +1,23 @@ +Ed25519Signature | @aptos-labs/ts-sdk - v7.0.0
                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                Preparing search index...

                                                                Class Ed25519Signature

                                                                Represents a signature of a message signed using an Ed25519 private key.

                                                                +

                                                                Hierarchy (View Summary)

                                                                Index

                                                                Implementation - BCS

                                                                Implementation - Serialization

                                                                Constructors

                                                                Methods

                                                                Implementation - BCS

                                                                • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                  +

                                                                  Returns Uint8Array

                                                                  the BCS representation of the Serializable instance as a byte buffer.

                                                                  +
                                                                • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                  +

                                                                  Returns Hex

                                                                  A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                  +

                                                                Implementation - Serialization

                                                                LENGTH: 64

                                                                Length of an Ed25519 signature, which is 64 bytes.

                                                                +

                                                                Constructors

                                                                Methods

                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/EntryFunction.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/EntryFunction.html new file mode 100644 index 000000000..f428cb5df --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/EntryFunction.html @@ -0,0 +1,53 @@ +EntryFunction | @aptos-labs/ts-sdk - v7.0.0
                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                  Preparing search index...

                                                                  Class EntryFunction

                                                                  Represents an entry function that can be serialized and deserialized. +This class encapsulates the details required to invoke a function within a module, +including the module name, function name, type arguments, and function arguments.

                                                                  +

                                                                  Fully qualified module name in the format "account_address::module_name" (e.g., "0x1::coin").

                                                                  +

                                                                  The name of the function (e.g., "transfer").

                                                                  +

                                                                  Type arguments required by the Move function.

                                                                  +

                                                                  Arguments to the Move function.

                                                                  +
                                                                  Index

                                                                  Implementation - Transactions

                                                                  Methods

                                                                  Properties

                                                                  Implementation - Transactions

                                                                  • Contains the payload to run a function within a module.

                                                                    +

                                                                    Parameters

                                                                    • module_name: ModuleId

                                                                      Fully qualified module name in format "account_address::module_name" e.g. "0x1::coin"

                                                                      +
                                                                    • function_name: Identifier

                                                                      The function name. e.g "transfer"

                                                                      +
                                                                    • type_args: TypeTag[]

                                                                      Type arguments that move function requires.

                                                                      +
                                                                    • args: EntryFunctionArgument[]

                                                                      arguments to the move function.

                                                                      +

                                                                    Returns EntryFunction

                                                                    A coin transfer function has one type argument "CoinType".

                                                                    +
                                                                    public entry fun transfer<CoinType>(from: &signer, to: address, amount: u64)
                                                                    +
                                                                    + +

                                                                    A coin transfer function has three arguments "from", "to" and "amount".

                                                                    +
                                                                    public entry fun transfer<CoinType>(from: &signer, to: address, amount: u64)
                                                                    +
                                                                    + +
                                                                  • Build an EntryFunction payload from raw primitive values.

                                                                    +

                                                                    Parameters

                                                                    • module_id: `${string}::${string}`

                                                                      Fully qualified module name in the format "AccountAddress::module_id", e.g., "0x1::coin".

                                                                      +
                                                                    • function_name: string

                                                                      The name of the function to be called.

                                                                      +
                                                                    • type_args: TypeTag[]

                                                                      Type arguments that the Move function requires.

                                                                      +
                                                                    • args: EntryFunctionArgument[]

                                                                      Arguments to the Move function.

                                                                      +

                                                                    Returns EntryFunction

                                                                    EntryFunction

                                                                    +

                                                                    A coin transfer function has one type argument "CoinType".

                                                                    +
                                                                    public(script) fun transfer<CoinType>(from: &signer, to: address, amount: u64)
                                                                    +
                                                                    + +

                                                                    A coin transfer function has three arguments "from", "to", and "amount".

                                                                    +
                                                                    public(script) fun transfer<CoinType>(from: &signer, to: address, amount: u64)
                                                                    +
                                                                    + +
                                                                  • Deserializes an entry function payload with the arguments represented as EntryFunctionBytes instances.

                                                                    +

                                                                    Parameters

                                                                    Returns EntryFunction

                                                                    A deserialized EntryFunction payload for a transaction.

                                                                    +

                                                                    EntryFunctionBytes

                                                                    +

                                                                    NOTE: When you deserialize an EntryFunction payload with this method, the entry function +arguments are populated into the deserialized instance as type-agnostic, raw fixed bytes +in the form of the EntryFunctionBytes class.

                                                                    +

                                                                    In order to correctly deserialize these arguments as their actual type representations, you +must know the types of the arguments beforehand and deserialize them yourself individually.

                                                                    +

                                                                    One way you could achieve this is by using the ABIs for an entry function and deserializing each +argument as its given, corresponding type.

                                                                    +

                                                                  Methods

                                                                  Properties

                                                                  function_name: Identifier
                                                                  module_name: ModuleId
                                                                  type_args: TypeTag[]
                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/EntryFunctionBytes.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/EntryFunctionBytes.html new file mode 100644 index 000000000..c856e665e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/EntryFunctionBytes.html @@ -0,0 +1,39 @@ +EntryFunctionBytes | @aptos-labs/ts-sdk - v7.0.0
                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                    Preparing search index...

                                                                    Class EntryFunctionBytes

                                                                    This class exists solely to represent a sequence of fixed bytes as a serialized entry function, because +serializing an entry function appends a prefix that's only used for entry function arguments.

                                                                    +

                                                                    NOTE: Using this class for serialized script functions will lead to erroneous and unexpected behavior.

                                                                    +

                                                                    If you wish to convert this class back to a TransactionArgument, you must know the type +of the argument beforehand, and use the appropriate class to deserialize the bytes within +an instance of this class.

                                                                    +

                                                                    Hierarchy (View Summary)

                                                                    Implements

                                                                    Index

                                                                    Implementation - BCS

                                                                    • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                      +

                                                                      Returns Hex

                                                                      A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                      +
                                                                    • Serializes the value using the provided serializer. +This function is essential for accurately representing a sequence of bytes that are already BCS-serialized as a type.

                                                                      +

                                                                      Note that to see the Move, BCS-serialized representation of the underlying fixed byte vector, +we must not serialize the length prefix.

                                                                      +

                                                                      Parameters

                                                                      • serializer: Serializer

                                                                        The serializer instance used to perform the serialization.

                                                                        +

                                                                      Returns void

                                                                    • The only way to create an instance of this class is to use this static method. +This function should only be used when deserializing a sequence of EntryFunctionPayload arguments.

                                                                      +

                                                                      Parameters

                                                                      • deserializer: Deserializer

                                                                        The deserializer instance with the buffered bytes.

                                                                        +
                                                                      • length: number

                                                                        The length of the bytes to deserialize.

                                                                        +

                                                                      Returns EntryFunctionBytes

                                                                      An instance of this class, which will now only be usable as an EntryFunctionArgument.

                                                                      +

                                                                    Methods

                                                                    • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                      +

                                                                      Returns string

                                                                      the hex formatas a string prefixed by 0x.

                                                                      +

                                                                    Properties

                                                                    value: FixedBytes
                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/EphemeralCertificate.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/EphemeralCertificate.html new file mode 100644 index 000000000..e07b70994 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/EphemeralCertificate.html @@ -0,0 +1,26 @@ +EphemeralCertificate | @aptos-labs/ts-sdk - v7.0.0
                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                      Preparing search index...

                                                                      Class EphemeralCertificate

                                                                      Represents an ephemeral certificate containing a signature, specifically a ZeroKnowledgeSig. +This class can be extended to support additional signature types, such as OpenIdSignature.

                                                                      +

                                                                      Hierarchy (View Summary)

                                                                      Index

                                                                      Implementation - BCS

                                                                      Implementation - Serialization

                                                                      Constructors

                                                                      Methods

                                                                      Properties

                                                                      Implementation - BCS

                                                                      • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                        +

                                                                        Returns Uint8Array

                                                                        the BCS representation of the Serializable instance as a byte buffer.

                                                                        +
                                                                      • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                        +

                                                                        Returns Hex

                                                                        A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                        +

                                                                      Implementation - Serialization

                                                                      variant: ZkProof

                                                                      Index of the underlying enum variant

                                                                      +

                                                                      Constructors

                                                                      Methods

                                                                      Properties

                                                                      signature: Signature
                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/EphemeralKeyPair.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/EphemeralKeyPair.html new file mode 100644 index 000000000..cc1e08589 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/EphemeralKeyPair.html @@ -0,0 +1,76 @@ +EphemeralKeyPair | @aptos-labs/ts-sdk - v7.0.0
                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                        Preparing search index...

                                                                        Class EphemeralKeyPair

                                                                        Represents an ephemeral key pair used for signing transactions via the Keyless authentication scheme. +This key pair is temporary and includes an expiration time. +For more details on how this class is used, refer to the documentation: +https://aptos.dev/guides/keyless-accounts/#1-present-the-user-with-a-sign-in-with-idp-button-on-the-ui

                                                                        +

                                                                        Hierarchy (View Summary)

                                                                        Index

                                                                        Implementation - Account (On-Chain Model)

                                                                        • Creates an instance of the class with a specified private key, optional expiry date, and optional blinder. +This constructor initializes the public key, sets the expiry date to a default value if not provided, +generates a blinder if not supplied, and calculates the nonce based on the public key, expiry date, and blinder.

                                                                          +

                                                                          Parameters

                                                                          • args: { blinder?: HexInput; expiryDateSecs?: number; privateKey: PrivateKey }

                                                                            The parameters for constructing the instance.

                                                                            +
                                                                            • Optionalblinder?: HexInput

                                                                              Optional blinder value. If not provided, a new blinder will be generated.

                                                                              +
                                                                            • OptionalexpiryDateSecs?: number

                                                                              Optional expiry date in seconds from the current time. Defaults to two weeks from now.

                                                                              +
                                                                            • privateKey: PrivateKey

                                                                              The private key used for creating the instance.

                                                                              +

                                                                          Returns EphemeralKeyPair

                                                                        blinder: Uint8Array

                                                                        A byte array of length BLINDER_LENGTH used to obfuscate the public key from the IdP. +Used in calculating the nonce passed to the IdP and as a secret witness in proof generation.

                                                                        +
                                                                        expiryDateSecs: number

                                                                        A timestamp in seconds indicating when the ephemeral key pair is expired. After expiry, a new +EphemeralKeyPair must be generated and a new JWT needs to be created.

                                                                        +
                                                                        nonce: string

                                                                        The value passed to the IdP when the user authenticates. It consists of a hash of the +ephemeral public key, expiry date, and blinder.

                                                                        +
                                                                        • Clears the ephemeral private key from memory by overwriting it with random bytes. +After calling this method, the ephemeral key pair can no longer be used for signing.

                                                                          +

                                                                          Note: Due to JavaScript's memory management, this cannot guarantee complete removal of +sensitive data from memory, but it significantly reduces the window of exposure.

                                                                          +

                                                                          Returns void

                                                                        • Returns whether the ephemeral key pair has been cleared from memory.

                                                                          +

                                                                          Returns boolean

                                                                          true if the key pair has been cleared, false otherwise

                                                                          +
                                                                        • Checks if the current time has surpassed the expiry date of the key pair.

                                                                          +

                                                                          Returns boolean

                                                                          boolean - Returns true if the key pair is expired, otherwise false.

                                                                          +
                                                                        • Serializes the object's properties into a format suitable for transmission or storage. +This function is essential for preparing the object data for serialization processes.

                                                                          +

                                                                          Parameters

                                                                          • serializer: Serializer

                                                                            The serializer instance used to serialize the object's properties.

                                                                            +

                                                                          Returns void

                                                                        • Sign the given data using the private key, returning an ephemeral signature. +This function is essential for creating a secure signature that can be used for authentication or verification purposes.

                                                                          +

                                                                          Parameters

                                                                          • data: HexInput

                                                                            The data to be signed, provided in HexInput format.

                                                                            +

                                                                          Returns EphemeralSignature

                                                                          EphemeralSignature - The resulting ephemeral signature.

                                                                          +

                                                                          Error - Throws an error if the EphemeralKeyPair has expired or been cleared from memory.

                                                                          +
                                                                        • Deserialize a byte array into an EphemeralKeyPair object. +This function allows you to reconstruct an EphemeralKeyPair from its serialized byte representation.

                                                                          +

                                                                          Parameters

                                                                          • bytes: Uint8Array

                                                                            The byte array representing the serialized EphemeralKeyPair.

                                                                            +

                                                                          Returns EphemeralKeyPair

                                                                        • Generates a new ephemeral key pair with an optional expiry date. +This function allows you to create a temporary key pair for secure operations.

                                                                          +

                                                                          Parameters

                                                                          • Optionalargs: { expiryDateSecs?: number; scheme?: Ed25519 }

                                                                            Optional parameters for key pair generation.

                                                                            +
                                                                            • OptionalexpiryDateSecs?: number

                                                                              The date of expiry for the key pair in seconds.

                                                                              +
                                                                            • Optionalscheme?: Ed25519

                                                                              The type of key pair to use for the EphemeralKeyPair. Only Ed25519 is supported for now.

                                                                              +

                                                                          Returns EphemeralKeyPair

                                                                          An instance of EphemeralKeyPair containing the generated private key and expiry date.

                                                                          +

                                                                        Implementation - BCS

                                                                        • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                          +

                                                                          Returns Uint8Array

                                                                          the BCS representation of the Serializable instance as a byte buffer.

                                                                          +
                                                                        • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                          +

                                                                          Returns Hex

                                                                          A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                          +

                                                                        Methods

                                                                        • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                          +

                                                                          Returns string

                                                                          the hex formatas a string prefixed by 0x.

                                                                          +

                                                                        Properties

                                                                        BLINDER_LENGTH: number = 31
                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/EphemeralPublicKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/EphemeralPublicKey.html new file mode 100644 index 000000000..8de849444 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/EphemeralPublicKey.html @@ -0,0 +1,52 @@ +EphemeralPublicKey | @aptos-labs/ts-sdk - v7.0.0
                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                          Preparing search index...

                                                                          Class EphemeralPublicKey

                                                                          Represents ephemeral public keys for Aptos Keyless accounts.

                                                                          +

                                                                          These keys are used only temporarily within Keyless accounts and are not utilized as public keys for account identification.

                                                                          +

                                                                          Hierarchy (View Summary)

                                                                          Index

                                                                          Implementation - BCS

                                                                          • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                            +

                                                                            Returns Uint8Array

                                                                            the BCS representation of the Serializable instance as a byte buffer.

                                                                            +
                                                                          • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                            +

                                                                            Returns Hex

                                                                            A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                            +

                                                                          Implementation - Serialization

                                                                          publicKey: PublicKey

                                                                          The public key itself

                                                                          +
                                                                          variant: Ed25519

                                                                          An enum indicating the scheme of the ephemeral public key

                                                                          +
                                                                          • Serializes the current instance, specifically handling the Ed25519 signature type. +This function ensures that the signature is properly serialized using the provided serializer.

                                                                            +

                                                                            Parameters

                                                                            • serializer: Serializer

                                                                              The serializer instance used to serialize the signature.

                                                                              +

                                                                            Returns void

                                                                            Error if the signature type is unknown.

                                                                            +

                                                                          Methods

                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/EphemeralSignature.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/EphemeralSignature.html new file mode 100644 index 000000000..f74f78656 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/EphemeralSignature.html @@ -0,0 +1,29 @@ +EphemeralSignature | @aptos-labs/ts-sdk - v7.0.0
                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                            Preparing search index...

                                                                            Class EphemeralSignature

                                                                            Represents ephemeral signatures used in Aptos Keyless accounts.

                                                                            +

                                                                            These signatures are utilized within the KeylessSignature framework.

                                                                            +

                                                                            Hierarchy (View Summary)

                                                                            Index

                                                                            Implementation - BCS

                                                                            Implementation - Serialization

                                                                            Constructors

                                                                            Methods

                                                                            Implementation - BCS

                                                                            • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                              +

                                                                              Returns Uint8Array

                                                                              the BCS representation of the Serializable instance as a byte buffer.

                                                                              +
                                                                            • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                              +

                                                                              Returns Hex

                                                                              A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                              +

                                                                            Implementation - Serialization

                                                                            signature: Signature

                                                                            The signature signed by the private key of an EphemeralKeyPair

                                                                            +

                                                                            Constructors

                                                                            Methods

                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/FederatedKeylessAccount.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/FederatedKeylessAccount.html new file mode 100644 index 000000000..3a1f1856f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/FederatedKeylessAccount.html @@ -0,0 +1,136 @@ +FederatedKeylessAccount | @aptos-labs/ts-sdk - v7.0.0
                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                              Preparing search index...

                                                                              Class FederatedKeylessAccount

                                                                              Account implementation for the FederatedKeyless authentication scheme.

                                                                              +

                                                                              Used to represent a FederatedKeyless based account and sign transactions with it.

                                                                              +

                                                                              Use FederatedKeylessAccount.create() to instantiate a KeylessAccount with a JSON Web Token (JWT), proof, EphemeralKeyPair and the +address the JSON Web Key Set (JWKS) are installed that will be used to verify the JWT.

                                                                              +

                                                                              When the proof expires or the JWT becomes invalid, the KeylessAccount must be instantiated again with a new JWT, +EphemeralKeyPair, and corresponding proof.

                                                                              +

                                                                              Hierarchy (View Summary)

                                                                              Index

                                                                              Implementation - Account (On-Chain Model)

                                                                              accountAddress: AccountAddress

                                                                              Account address associated with the account

                                                                              +
                                                                              aud: string

                                                                              The value of the 'aud' claim on the JWT, also known as client ID. This is the identifier for the dApp's +OIDC registration with the identity provider.

                                                                              +
                                                                              ephemeralKeyPair: EphemeralKeyPair

                                                                              The EphemeralKeyPair used to generate sign.

                                                                              +
                                                                              jwt: string

                                                                              The JWT token used to derive the account

                                                                              +
                                                                              pepper: Uint8Array

                                                                              A value contains 31 bytes of entropy that preserves privacy of the account. Typically fetched from a pepper provider.

                                                                              +
                                                                              proof: ZeroKnowledgeSig | undefined

                                                                              The zero knowledge signature (if ready) which contains the proof used to validate the EphemeralKeyPair.

                                                                              +
                                                                              proofOrPromise: ZeroKnowledgeSig | Promise<ZeroKnowledgeSig>

                                                                              The proof of the EphemeralKeyPair or a promise that provides the proof. This is used to allow for awaiting on +fetching the proof.

                                                                              +

                                                                              The FederatedKeylessPublicKey associated with the account

                                                                              +
                                                                              signingScheme: SigningScheme = SigningScheme.SingleKey

                                                                              Signing scheme used to sign transactions

                                                                              +
                                                                              uidKey: string

                                                                              The claim on the JWT to identify a user. This is typically 'sub' or 'email'.

                                                                              +
                                                                              uidVal: string

                                                                              The value of the uidKey claim on the JWT. This intended to be a stable user identifier.

                                                                              +
                                                                              • Verify the given message and signature with the public key. It fetches any on chain state if needed for verification.

                                                                                +

                                                                                Parameters

                                                                                • args: {
                                                                                      aptosConfig: AptosConfig;
                                                                                      message: HexInput;
                                                                                      options?: { throwErrorWithReason?: boolean };
                                                                                      signature: KeylessSignature;
                                                                                  }

                                                                                  The arguments for verifying the signature.

                                                                                  +
                                                                                  • aptosConfig: AptosConfig

                                                                                    The configuration object for connecting to the Aptos network

                                                                                    +
                                                                                  • message: HexInput

                                                                                    Raw message data in HexInput format.

                                                                                    +
                                                                                  • Optionaloptions?: { throwErrorWithReason?: boolean }
                                                                                  • signature: KeylessSignature

                                                                                    Signed message signature.

                                                                                    +

                                                                                Returns Promise<boolean>

                                                                                A boolean indicating whether the signature is valid.

                                                                                +

                                                                              Implementation - BCS

                                                                              • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                +

                                                                                Returns Uint8Array

                                                                                the BCS representation of the Serializable instance as a byte buffer.

                                                                                +
                                                                              • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                +

                                                                                Returns Hex

                                                                                A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                +

                                                                              Constructors

                                                                              • Use the static generator FederatedKeylessAccount.create(...) instead. +Creates a KeylessAccount instance using the provided parameters. +This function allows you to set up a KeylessAccount with specific attributes such as address, proof, and JWT.

                                                                                +

                                                                                Parameters

                                                                                • args: {
                                                                                      address?: AccountAddress;
                                                                                      aud: string;
                                                                                      audless?: boolean;
                                                                                      ephemeralKeyPair: EphemeralKeyPair;
                                                                                      iss: string;
                                                                                      jwkAddress: AccountAddress;
                                                                                      jwt: string;
                                                                                      pepper: HexInput;
                                                                                      proof: ZeroKnowledgeSig | Promise<ZeroKnowledgeSig>;
                                                                                      proofFetchCallback?: ProofFetchCallback;
                                                                                      uidKey: string;
                                                                                      uidVal: string;
                                                                                      verificationKeyHash?: HexInput;
                                                                                  }

                                                                                  The parameters for creating a KeylessAccount.

                                                                                  +
                                                                                  • Optionaladdress?: AccountAddress

                                                                                    Optional account address associated with the KeylessAccount.

                                                                                    +
                                                                                  • aud: string
                                                                                  • Optionalaudless?: boolean
                                                                                  • ephemeralKeyPair: EphemeralKeyPair

                                                                                    The ephemeral key pair used in the account creation.

                                                                                    +
                                                                                  • iss: string
                                                                                  • jwkAddress: AccountAddress

                                                                                    The address which stores the JSON Web Key Set (JWKS) used to verify the JWT.

                                                                                    +
                                                                                  • jwt: string

                                                                                    A JSON Web Token used for authentication.

                                                                                    +
                                                                                  • pepper: HexInput
                                                                                  • proof: ZeroKnowledgeSig | Promise<ZeroKnowledgeSig>

                                                                                    A Zero Knowledge Signature or a promise that resolves to one.

                                                                                    +
                                                                                  • OptionalproofFetchCallback?: ProofFetchCallback

                                                                                    Optional callback function for fetching proof.

                                                                                    +
                                                                                  • uidKey: string

                                                                                    Optional key for user identification, defaults to "sub".

                                                                                    +
                                                                                  • uidVal: string
                                                                                  • OptionalverificationKeyHash?: HexInput

                                                                                Returns FederatedKeylessAccount

                                                                              Methods

                                                                              Properties

                                                                              audless: boolean
                                                                              verificationKeyHash?: Uint8Array<ArrayBufferLike>

                                                                              The hash of the verification key used to verify the proof. This is optional and can be used to check verifying key +rotations which may invalidate the proof.

                                                                              +
                                                                              PEPPER_LENGTH: number = 31
                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/FederatedKeylessPublicKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/FederatedKeylessPublicKey.html new file mode 100644 index 000000000..d938b6eaa --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/FederatedKeylessPublicKey.html @@ -0,0 +1,56 @@ +FederatedKeylessPublicKey | @aptos-labs/ts-sdk - v7.0.0
                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                Preparing search index...

                                                                                Class FederatedKeylessPublicKey

                                                                                Represents the FederatedKeylessPublicKey public key

                                                                                +

                                                                                These keys use an on-chain address as a source of truth for the JWK used to verify signatures.

                                                                                +

                                                                                FederatedKeylessPublicKey authentication key is represented in the SDK as AnyPublicKey.

                                                                                +

                                                                                Hierarchy (View Summary)

                                                                                Index

                                                                                Implementation - BCS

                                                                                • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                  +

                                                                                  Returns Uint8Array

                                                                                  the BCS representation of the Serializable instance as a byte buffer.

                                                                                  +
                                                                                • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                  +

                                                                                  Returns Hex

                                                                                  A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                  +

                                                                                Implementation - Serialization

                                                                                jwkAddress: AccountAddress

                                                                                The address that contains the JWK set to be used for verification.

                                                                                +
                                                                                keylessPublicKey: KeylessPublicKey

                                                                                The inner public key which contains the standard Keyless public key.

                                                                                +
                                                                                • Creates a FederatedKeylessPublicKey from the JWT components plus pepper

                                                                                  +

                                                                                  Parameters

                                                                                  • args: {
                                                                                        aud: string;
                                                                                        iss: string;
                                                                                        jwkAddress: AccountAddressInput;
                                                                                        pepper: HexInput;
                                                                                        uidKey: string;
                                                                                        uidVal: string;
                                                                                    }
                                                                                    • aud: string

                                                                                      the client ID of the application

                                                                                      +
                                                                                    • iss: string

                                                                                      the iss of the identity

                                                                                      +
                                                                                    • jwkAddress: AccountAddressInput
                                                                                    • pepper: HexInput

                                                                                      The pepper used to maintain privacy of the account

                                                                                      +
                                                                                    • uidKey: string

                                                                                      the key to use to get the uidVal in the JWT token

                                                                                      +
                                                                                    • uidVal: string

                                                                                      the value of the uidKey in the JWT token

                                                                                      +

                                                                                  Returns FederatedKeylessPublicKey

                                                                                  FederatedKeylessPublicKey

                                                                                  +

                                                                                Constructors

                                                                                Methods

                                                                                • Verifies a keyless signature for a given message. It will fetch the keyless configuration and the JWK to +use for verification from the appropriate network as defined by the aptosConfig.

                                                                                  +

                                                                                  Parameters

                                                                                  • args: {
                                                                                        aptosConfig: AptosConfig;
                                                                                        message: HexInput;
                                                                                        options?: { throwErrorWithReason?: boolean };
                                                                                        signature: KeylessSignature;
                                                                                    }
                                                                                    • aptosConfig: AptosConfig

                                                                                      The aptos config to use for fetching the keyless configuration.

                                                                                      +
                                                                                    • message: HexInput

                                                                                      The message to verify the signature against.

                                                                                      +
                                                                                    • Optionaloptions?: { throwErrorWithReason?: boolean }
                                                                                      • OptionalthrowErrorWithReason?: boolean

                                                                                        Whether to throw an error with the reason for the failure instead of returning false.

                                                                                        +
                                                                                    • signature: KeylessSignature

                                                                                      The signature to verify.

                                                                                      +

                                                                                  Returns Promise<boolean>

                                                                                  true if the signature is valid

                                                                                  +
                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/FeePayerRawTransaction.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/FeePayerRawTransaction.html new file mode 100644 index 000000000..ceb0daacb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/FeePayerRawTransaction.html @@ -0,0 +1,28 @@ +FeePayerRawTransaction | @aptos-labs/ts-sdk - v7.0.0
                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                  Preparing search index...

                                                                                  Class FeePayerRawTransaction

                                                                                  Represents a Fee Payer Transaction that can be serialized and deserialized.

                                                                                  +

                                                                                  Hierarchy (View Summary)

                                                                                  Index

                                                                                  Implementation - BCS

                                                                                  Implementation - Transactions

                                                                                  Constructors

                                                                                  Methods

                                                                                  Implementation - BCS

                                                                                  • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                    +

                                                                                    Returns Uint8Array

                                                                                    the BCS representation of the Serializable instance as a byte buffer.

                                                                                    +
                                                                                  • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                    +

                                                                                    Returns Hex

                                                                                    A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                    +

                                                                                  Implementation - Transactions

                                                                                  fee_payer_address: AccountAddress

                                                                                  The fee payer account address

                                                                                  +

                                                                                  The raw transaction

                                                                                  +
                                                                                  secondary_signer_addresses: AccountAddress[]

                                                                                  The secondary signers on this transaction - optional and can be empty

                                                                                  +

                                                                                  Constructors

                                                                                  Methods

                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/FixedBytes.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/FixedBytes.html new file mode 100644 index 000000000..ebd763e59 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/FixedBytes.html @@ -0,0 +1,50 @@ +FixedBytes | @aptos-labs/ts-sdk - v7.0.0
                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                    Preparing search index...

                                                                                    Class FixedBytes

                                                                                    Represents a contiguous sequence of already serialized BCS bytes.

                                                                                    +

                                                                                    This class differs from most other Serializable classes in that its internal byte buffer is serialized to BCS +bytes exactly as-is, without prepending the length of the bytes. It is ideal for scenarios where custom serialization +is required, such as passing serialized bytes as transaction arguments. Additionally, it serves as a representation +of type-agnostic BCS bytes, akin to a vector.

                                                                                    +

                                                                                    An example use case includes handling bytes resulting from entry function arguments that have been serialized +for an entry function.

                                                                                    +
                                                                                    const yourCustomSerializedBytes = new Uint8Array([1, 2, 3, 4, 5, 6, 7, 8]);
                                                                                    const fixedBytes = new FixedBytes(yourCustomSerializedBytes);
                                                                                    const payload = await generateTransactionPayload({
                                                                                    function: "0xbeefcafe::your_module::your_function_that_requires_custom_serialization",
                                                                                    functionArguments: [yourCustomBytes],
                                                                                    });

                                                                                    This class is particularly useful when you want to handle a fixed-size byte array without the overhead of
                                                                                    length prepending, such as when dealing with 32-byte addresses stored as U8 in a MoveVector<U8>.

                                                                                    For example, if you store each of the 32 bytes for an address as a U8 in a MoveVector<U8>, when you
                                                                                    serialize that MoveVector<U8>, it will be serialized to 33 bytes. If you solely want to pass around
                                                                                    the 32 bytes as a Serializable class that *does not* prepend the length to the BCS-serialized representation,
                                                                                    use this class.* +
                                                                                    + +

                                                                                    HexInput representing a sequence of Uint8 bytes.

                                                                                    +

                                                                                    A Serializable FixedBytes instance, which when serialized, does not prepend the length of the bytes.

                                                                                    +

                                                                                    EntryFunctionBytes

                                                                                    +

                                                                                    Hierarchy (View Summary)

                                                                                    Implements

                                                                                    Index

                                                                                    Implementation - BCS

                                                                                    • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                      +

                                                                                      Returns Hex

                                                                                      A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                      +
                                                                                    • Deserializes a fixed-length byte array from the provided deserializer. +This function helps in reconstructing a FixedBytes object from the serialized data.

                                                                                      +

                                                                                      Parameters

                                                                                      • deserializer: Deserializer

                                                                                        The deserializer instance used to read the byte data.

                                                                                        +
                                                                                      • length: number

                                                                                        The length of the byte array to be deserialized.

                                                                                        +

                                                                                      Returns FixedBytes

                                                                                    Methods

                                                                                    • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                      +

                                                                                      Returns string

                                                                                      the hex formatas a string prefixed by 0x.

                                                                                      +

                                                                                    Properties

                                                                                    value: Uint8Array
                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Groth16ProofAndStatement.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Groth16ProofAndStatement.html new file mode 100644 index 000000000..d20b475a5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Groth16ProofAndStatement.html @@ -0,0 +1,27 @@ +Groth16ProofAndStatement | @aptos-labs/ts-sdk - v7.0.0
                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                      Preparing search index...

                                                                                      Class Groth16ProofAndStatement

                                                                                      Represents a Groth16 proof and statement, consisting of a Groth16 proof and a public inputs hash. +This is used to generate the signing message for the training wheels signature.

                                                                                      +

                                                                                      Hierarchy (View Summary)

                                                                                      Index

                                                                                      Implementation - Account (On-Chain Model)

                                                                                      Implementation - BCS

                                                                                      Implementation - Serialization

                                                                                      Constructors

                                                                                      Methods

                                                                                      Implementation - Account (On-Chain Model)

                                                                                      domainSeparator: "APTOS::Groth16ProofAndStatement"

                                                                                      The domain separator prefix used when hashing.

                                                                                      +

                                                                                      Implementation - BCS

                                                                                      • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                        +

                                                                                        Returns Uint8Array

                                                                                        the BCS representation of the Serializable instance as a byte buffer.

                                                                                        +
                                                                                      • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                        +

                                                                                        Returns Hex

                                                                                        A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                        +

                                                                                      Implementation - Serialization

                                                                                      proof: Groth16Zkp

                                                                                      The Groth16 proof

                                                                                      +
                                                                                      publicInputsHash: Uint8Array

                                                                                      The public inputs hash as a 32 byte Uint8Array

                                                                                      +

                                                                                      Constructors

                                                                                      Methods

                                                                                      • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                        +

                                                                                        Returns string

                                                                                        the hex formatas a string prefixed by 0x.

                                                                                        +
                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Groth16VerificationKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Groth16VerificationKey.html new file mode 100644 index 000000000..d82880a96 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Groth16VerificationKey.html @@ -0,0 +1,31 @@ +Groth16VerificationKey | @aptos-labs/ts-sdk - v7.0.0
                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                        Preparing search index...

                                                                                        Class Groth16VerificationKey

                                                                                        Represents the verification key stored on-chain used to verify Groth16 proofs.

                                                                                        +
                                                                                        Index

                                                                                        Implementation - Serialization

                                                                                        alphaG1: G1Bytes

                                                                                        The alpha * G, where G is the generator of G1

                                                                                        +
                                                                                        betaG2: G2Bytes

                                                                                        The alpha * H, where H is the generator of G2

                                                                                        +
                                                                                        deltaG2: G2Bytes

                                                                                        The delta * H, where H is the generator of G2

                                                                                        +
                                                                                        gammaAbcG1: [G1Bytes, G1Bytes]

                                                                                        The gamma^{-1} * (beta * a_i + alpha * b_i + c_i) * H, where H is the generator of G1

                                                                                        +
                                                                                        gammaG2: G2Bytes

                                                                                        The gamma * H, where H is the generator of G2

                                                                                        +
                                                                                        • Converts the verification key to a JSON format compatible with snarkjs groth16.verify

                                                                                          +

                                                                                          Returns {
                                                                                              curve: string;
                                                                                              IC: string[][];
                                                                                              nPublic: number;
                                                                                              protocol: string;
                                                                                              vk_alpha_1: string[];
                                                                                              vk_beta_2: [string, string][];
                                                                                              vk_delta_2: [string, string][];
                                                                                              vk_gamma_2: [string, string][];
                                                                                          }

                                                                                          An object containing the verification key in snarkjs format

                                                                                          +

                                                                                        Constructors

                                                                                        Methods

                                                                                        • Calculates the hash of the serialized form of the verification key. +This is useful for comparing verification keys or using them as unique identifiers.

                                                                                          +

                                                                                          Returns Uint8Array

                                                                                          The SHA3-256 hash of the serialized verification key as a Uint8Array

                                                                                          +
                                                                                        • Verifies a Groth16 proof using the verification key given the public inputs hash and the proof.

                                                                                          +

                                                                                          Parameters

                                                                                          • args: { groth16Proof: Groth16Zkp; publicInputsHash: bigint }
                                                                                            • groth16Proof: Groth16Zkp

                                                                                              The Groth16 proof

                                                                                              +
                                                                                            • publicInputsHash: bigint

                                                                                              The public inputs hash

                                                                                              +

                                                                                          Returns boolean

                                                                                          true if the proof is valid

                                                                                          +
                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Groth16Zkp.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Groth16Zkp.html new file mode 100644 index 000000000..7cc928ead --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Groth16Zkp.html @@ -0,0 +1,27 @@ +Groth16Zkp | @aptos-labs/ts-sdk - v7.0.0
                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                          Preparing search index...

                                                                                          Class Groth16Zkp

                                                                                          Represents a Groth16 zero-knowledge proof, consisting of three proof points in compressed serialization format. +The points are the compressed serialization of affine representation of the proof.

                                                                                          +

                                                                                          Hierarchy (View Summary)

                                                                                          Index

                                                                                          Implementation - BCS

                                                                                          Implementation - Serialization

                                                                                          a +b +c +

                                                                                          Constructors

                                                                                          Methods

                                                                                          Implementation - BCS

                                                                                          • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                            +

                                                                                            Returns Uint8Array

                                                                                            the BCS representation of the Serializable instance as a byte buffer.

                                                                                            +
                                                                                          • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                            +

                                                                                            Returns Hex

                                                                                            A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                            +

                                                                                          Implementation - Serialization

                                                                                          The bytes of G1 proof point a

                                                                                          +

                                                                                          The bytes of G2 proof point b

                                                                                          +

                                                                                          The bytes of G1 proof point c

                                                                                          +

                                                                                          Constructors

                                                                                          Methods

                                                                                          • Returns {
                                                                                                curve: string;
                                                                                                pi_a: string[];
                                                                                                pi_b: [string, string][];
                                                                                                pi_c: string[];
                                                                                                protocol: string;
                                                                                            }

                                                                                          • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                            +

                                                                                            Returns string

                                                                                            the hex formatas a string prefixed by 0x.

                                                                                            +
                                                                                          • Returns the hex string representation of the Serializable value without the 0x prefix.

                                                                                            +

                                                                                            Returns string

                                                                                            the hex format as a string without 0x prefix.

                                                                                            +
                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Hex.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Hex.html new file mode 100644 index 000000000..5cf2bc270 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Hex.html @@ -0,0 +1,71 @@ +Hex | @aptos-labs/ts-sdk - v7.0.0
                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                            Preparing search index...

                                                                                            Class Hex

                                                                                            NOTE: Do not use this class when working with account addresses; use AccountAddress instead. +When accepting hex data as input to a function, prefer to accept HexInput and

                                                                                            +

                                                                                            A helper class for working with hex data. Hex data, when represented as a string, +generally looks like this, for example: 0xaabbcc, 45cd32, etc.

                                                                                            +

                                                                                            then use the static helper methods of this class to convert it into the desired +format. This enables the greatest flexibility for the developer.

                                                                                            +

                                                                                            Example usage:

                                                                                            +
                                                                                            getTransactionByHash(txnHash: HexInput): Promise<Transaction> {
                                                                                            const txnHashString = Hex.fromHexInput(txnHash).toString();
                                                                                            return await getTransactionByHashInner(txnHashString);
                                                                                            } +
                                                                                            + +

                                                                                            This call to Hex.fromHexInput().toString() converts the HexInput to a hex string +with a leading 0x prefix, regardless of what the input format was.

                                                                                            +

                                                                                            Other ways to chain the functions together:

                                                                                            +
                                                                                              +
                                                                                            • Hex.fromHexString({ hexInput: "0x1f" }).toUint8Array()
                                                                                            • +
                                                                                            • new Hex([1, 3]).toStringWithoutPrefix()
                                                                                            • +
                                                                                            +
                                                                                            Index

                                                                                            Implementation - Serialization

                                                                                            • Create a new Hex instance from a Uint8Array.

                                                                                              +

                                                                                              Parameters

                                                                                              • data: Uint8Array

                                                                                                The Uint8Array containing the data to initialize the Hex instance.

                                                                                                +

                                                                                              Returns Hex

                                                                                            • Determine if two Hex instances are equal by comparing their underlying byte data.

                                                                                              +

                                                                                              Parameters

                                                                                              • other: Hex

                                                                                                The Hex instance to compare to.

                                                                                                +

                                                                                              Returns boolean

                                                                                              true if the Hex instances are equal, false if not.

                                                                                              +
                                                                                            • Get the hex data as a string with the 0x prefix.

                                                                                              +

                                                                                              Returns string

                                                                                              Hex string with 0x prefix

                                                                                              +
                                                                                            • Get the hex data as a string without the 0x prefix.

                                                                                              +

                                                                                              Returns string

                                                                                              Hex string without 0x prefix

                                                                                              +
                                                                                            • Get the inner hex data as a Uint8Array. The inner data is already a Uint8Array, so no conversion takes place.

                                                                                              +

                                                                                              Returns Uint8Array

                                                                                              Hex data as Uint8Array

                                                                                              +
                                                                                            • Converts an instance of HexInput, which can be a string or a Uint8Array, into a Hex instance. +This function is useful for transforming hexadecimal representations into a structured Hex object for further manipulation.

                                                                                              +

                                                                                              Parameters

                                                                                              • hexInput: HexInput

                                                                                                A HexInput which can be a string or Uint8Array.

                                                                                                +

                                                                                              Returns Hex

                                                                                              A Hex instance created from the provided hexInput.

                                                                                              +
                                                                                            • Converts a hex string into a Hex instance, allowing for both prefixed and non-prefixed formats.

                                                                                              +

                                                                                              Parameters

                                                                                              • str: string

                                                                                                A hex string, with or without the 0x prefix.

                                                                                                +

                                                                                              Returns Hex

                                                                                              Hex - The resulting Hex instance created from the provided string.

                                                                                              +

                                                                                              ParsingError - If the hex string is too short, has an odd number of characters, or contains invalid hex characters.

                                                                                              +
                                                                                            • Check if the provided string is a valid hexadecimal representation.

                                                                                              +

                                                                                              Parameters

                                                                                              • str: string

                                                                                                A hex string representing byte data.

                                                                                                +

                                                                                              Returns ParsingResult<HexInvalidReason>

                                                                                              An object containing:

                                                                                              +
                                                                                                +
                                                                                              • valid: A boolean indicating whether the string is valid.
                                                                                              • +
                                                                                              • invalidReason: The reason for invalidity if the string is not valid.
                                                                                              • +
                                                                                              • invalidReasonMessage: A message explaining why the string is invalid.
                                                                                              • +
                                                                                              +

                                                                                            Methods

                                                                                            • Converts a HexInput (string or Uint8Array) to a hex string with '0x' prefix.

                                                                                              +

                                                                                              Parameters

                                                                                              • hexInput: HexInput

                                                                                                The input to convert, either a hex string (with/without '0x' prefix) or Uint8Array

                                                                                                +

                                                                                              Returns string

                                                                                              A hex string with '0x' prefix (e.g., "0x1234")

                                                                                              +
                                                                                              Hex.hexInputToString("1234")        // returns "0x1234"
                                                                                              Hex.hexInputToString("0x1234") // returns "0x1234"
                                                                                              Hex.hexInputToString(new Uint8Array([0x12, 0x34])) // returns "0x1234" +
                                                                                              + +
                                                                                            • Converts a HexInput (string or Uint8Array) to a hex string without '0x' prefix.

                                                                                              +

                                                                                              Parameters

                                                                                              • hexInput: HexInput

                                                                                                The input to convert, either a hex string (with/without '0x' prefix) or Uint8Array

                                                                                                +

                                                                                              Returns string

                                                                                              A hex string without '0x' prefix (e.g., "1234")

                                                                                              +
                                                                                              Hex.hexInputToStringWithoutPrefix("1234")        // returns "1234"
                                                                                              Hex.hexInputToStringWithoutPrefix("0x1234") // returns "1234"
                                                                                              Hex.hexInputToStringWithoutPrefix(new Uint8Array([0x12, 0x34])) // returns "1234" +
                                                                                              + +
                                                                                            • Converts an instance of HexInput, which can be a string or a Uint8Array, into a Uint8Array.

                                                                                              +

                                                                                              Parameters

                                                                                              • hexInput: HexInput

                                                                                                A HexInput which can be a string or Uint8Array.

                                                                                                +

                                                                                              Returns Uint8Array

                                                                                              A Uint8Array created from the provided hexInput.

                                                                                              +
                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/I128.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/I128.html new file mode 100644 index 000000000..1cf82887a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/I128.html @@ -0,0 +1,33 @@ +I128 | @aptos-labs/ts-sdk - v7.0.0
                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                              Preparing search index...

                                                                                              Class I128

                                                                                              Represents a 128-bit signed integer value. +This class provides methods for serialization and deserialization +of I128 values, ensuring that the values are within the valid range.

                                                                                              +

                                                                                              Hierarchy (View Summary)

                                                                                              Implements

                                                                                              Index

                                                                                              Implementation - BCS

                                                                                              Implementation - Transactions

                                                                                              Constructors

                                                                                              Methods

                                                                                              Properties

                                                                                              Implementation - BCS

                                                                                              • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                +

                                                                                                Returns Hex

                                                                                                A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                +

                                                                                              Implementation - Transactions

                                                                                              Constructors

                                                                                              Methods

                                                                                              • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                +

                                                                                                Returns string

                                                                                                the hex formatas a string prefixed by 0x.

                                                                                                +

                                                                                              Properties

                                                                                              value: bigint
                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/I16.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/I16.html new file mode 100644 index 000000000..54df48c50 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/I16.html @@ -0,0 +1,33 @@ +I16 | @aptos-labs/ts-sdk - v7.0.0
                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                Preparing search index...

                                                                                                Class I16

                                                                                                Represents a 16-bit signed integer (I16) value. +This class extends the Serializable class and provides methods for serialization +and deserialization of the I16 value.

                                                                                                +

                                                                                                Hierarchy (View Summary)

                                                                                                Implements

                                                                                                Index

                                                                                                Implementation - BCS

                                                                                                Implementation - Transactions

                                                                                                Constructors

                                                                                                Methods

                                                                                                Properties

                                                                                                Implementation - BCS

                                                                                                • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                  +

                                                                                                  Returns Hex

                                                                                                  A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                  +

                                                                                                Implementation - Transactions

                                                                                                Constructors

                                                                                                Methods

                                                                                                • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                  +

                                                                                                  Returns string

                                                                                                  the hex formatas a string prefixed by 0x.

                                                                                                  +

                                                                                                Properties

                                                                                                value: number
                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/I256.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/I256.html new file mode 100644 index 000000000..08845745b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/I256.html @@ -0,0 +1,33 @@ +I256 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                  Preparing search index...

                                                                                                  Class I256

                                                                                                  Represents a 256-bit signed integer (I256) that extends the Serializable class. +This class provides methods for serialization and deserialization of I256 values, +ensuring that the values are within the valid range.

                                                                                                  +

                                                                                                  Hierarchy (View Summary)

                                                                                                  Implements

                                                                                                  Index

                                                                                                  Implementation - BCS

                                                                                                  Implementation - Transactions

                                                                                                  Constructors

                                                                                                  Methods

                                                                                                  Properties

                                                                                                  Implementation - BCS

                                                                                                  • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                    +

                                                                                                    Returns Hex

                                                                                                    A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                    +

                                                                                                  Implementation - Transactions

                                                                                                  Constructors

                                                                                                  Methods

                                                                                                  • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                    +

                                                                                                    Returns string

                                                                                                    the hex formatas a string prefixed by 0x.

                                                                                                    +

                                                                                                  Properties

                                                                                                  value: bigint
                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/I32.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/I32.html new file mode 100644 index 000000000..fa3be2755 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/I32.html @@ -0,0 +1,32 @@ +I32 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                    Preparing search index...

                                                                                                    Class I32

                                                                                                    Represents a 32-bit signed integer (I32) that can be serialized and deserialized. +This class ensures that the value is within the valid range for an I32.

                                                                                                    +

                                                                                                    Hierarchy (View Summary)

                                                                                                    Implements

                                                                                                    Index

                                                                                                    Implementation - BCS

                                                                                                    Implementation - Transactions

                                                                                                    Constructors

                                                                                                    Methods

                                                                                                    Properties

                                                                                                    Implementation - BCS

                                                                                                    • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                      +

                                                                                                      Returns Hex

                                                                                                      A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                      +

                                                                                                    Implementation - Transactions

                                                                                                    Constructors

                                                                                                    Methods

                                                                                                    • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                      +

                                                                                                      Returns string

                                                                                                      the hex formatas a string prefixed by 0x.

                                                                                                      +

                                                                                                    Properties

                                                                                                    value: number
                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/I64.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/I64.html new file mode 100644 index 000000000..45279c087 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/I64.html @@ -0,0 +1,34 @@ +I64 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                      Preparing search index...

                                                                                                      Class I64

                                                                                                      Represents a 64-bit signed integer (I64) and provides methods for serialization.

                                                                                                      +

                                                                                                      This class ensures that the value is within the valid range for an I64 and provides +functionality to serialize the value for various use cases, including entry functions +and script functions.

                                                                                                      +

                                                                                                      Hierarchy (View Summary)

                                                                                                      Implements

                                                                                                      Index

                                                                                                      Implementation - BCS

                                                                                                      Implementation - Transactions

                                                                                                      Constructors

                                                                                                      Methods

                                                                                                      Properties

                                                                                                      Implementation - BCS

                                                                                                      • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                        +

                                                                                                        Returns Hex

                                                                                                        A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                        +

                                                                                                      Implementation - Transactions

                                                                                                      Constructors

                                                                                                      Methods

                                                                                                      • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                        +

                                                                                                        Returns string

                                                                                                        the hex formatas a string prefixed by 0x.

                                                                                                        +

                                                                                                      Properties

                                                                                                      value: bigint
                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/I8.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/I8.html new file mode 100644 index 000000000..888ef5aa9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/I8.html @@ -0,0 +1,32 @@ +I8 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                        Preparing search index...

                                                                                                        Class I8

                                                                                                        Represents an 8-bit signed integer (I8) value. +This class extends the Serializable class and provides methods for serialization and deserialization of I8 values.

                                                                                                        +

                                                                                                        Hierarchy (View Summary)

                                                                                                        Implements

                                                                                                        Index

                                                                                                        Implementation - BCS

                                                                                                        Implementation - Transactions

                                                                                                        Constructors

                                                                                                        Methods

                                                                                                        Properties

                                                                                                        Implementation - BCS

                                                                                                        • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                          +

                                                                                                          Returns Hex

                                                                                                          A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                          +

                                                                                                        Implementation - Transactions

                                                                                                        Constructors

                                                                                                        Methods

                                                                                                        • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                          +

                                                                                                          Returns string

                                                                                                          the hex formatas a string prefixed by 0x.

                                                                                                          +

                                                                                                        Properties

                                                                                                        value: number
                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Identifier.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Identifier.html new file mode 100644 index 000000000..6d6a20167 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Identifier.html @@ -0,0 +1,29 @@ +Identifier | @aptos-labs/ts-sdk - v7.0.0
                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                          Preparing search index...

                                                                                                          Class Identifier

                                                                                                          Represents an Identifier that can be serialized and deserialized. +This class is used to denote the module "name" in "ModuleId" and +the "function name" in "EntryFunction".

                                                                                                          +

                                                                                                          Hierarchy (View Summary)

                                                                                                          Index

                                                                                                          Implementation - BCS

                                                                                                          Implementation - Transactions

                                                                                                          Methods

                                                                                                          Properties

                                                                                                          Implementation - BCS

                                                                                                          • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                            +

                                                                                                            Returns Uint8Array

                                                                                                            the BCS representation of the Serializable instance as a byte buffer.

                                                                                                            +
                                                                                                          • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                            +

                                                                                                            Returns Hex

                                                                                                            A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                            +

                                                                                                          Implementation - Transactions

                                                                                                          Methods

                                                                                                          • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                            +

                                                                                                            Returns string

                                                                                                            the hex formatas a string prefixed by 0x.

                                                                                                            +

                                                                                                          Properties

                                                                                                          identifier: string
                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/KeylessAccount.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/KeylessAccount.html new file mode 100644 index 000000000..407193c24 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/KeylessAccount.html @@ -0,0 +1,137 @@ +KeylessAccount | @aptos-labs/ts-sdk - v7.0.0
                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                            Preparing search index...

                                                                                                            Class KeylessAccount

                                                                                                            Account implementation for the Keyless authentication scheme.

                                                                                                            +

                                                                                                            Used to represent a Keyless based account and sign transactions with it.

                                                                                                            +

                                                                                                            Use KeylessAccount.create() to instantiate a KeylessAccount with a JWT, proof and EphemeralKeyPair.

                                                                                                            +

                                                                                                            When the proof expires or the JWT becomes invalid, the KeylessAccount must be instantiated again with a new JWT, +EphemeralKeyPair, and corresponding proof.

                                                                                                            +

                                                                                                            Hierarchy (View Summary)

                                                                                                            Index

                                                                                                            Implementation - Account (On-Chain Model)

                                                                                                            • Use the static generator create(...) instead. +Creates an instance of the KeylessAccount with an optional proof.

                                                                                                              +

                                                                                                              Parameters

                                                                                                              • args: {
                                                                                                                    address?: AccountAddress;
                                                                                                                    aud: string;
                                                                                                                    ephemeralKeyPair: EphemeralKeyPair;
                                                                                                                    iss: string;
                                                                                                                    jwt: string;
                                                                                                                    pepper: HexInput;
                                                                                                                    proof: ZeroKnowledgeSig | Promise<ZeroKnowledgeSig>;
                                                                                                                    proofFetchCallback?: ProofFetchCallback;
                                                                                                                    uidKey: string;
                                                                                                                    uidVal: string;
                                                                                                                    verificationKeyHash?: HexInput;
                                                                                                                }

                                                                                                                The parameters for creating a KeylessAccount.

                                                                                                                +
                                                                                                                • Optionaladdress?: AccountAddress

                                                                                                                  Optional account address associated with the KeylessAccount.

                                                                                                                  +
                                                                                                                • aud: string

                                                                                                                  The value of the 'aud' claim on the JWT, also known as client ID. This is the identifier for the dApp's +OIDC registration with the identity provider.

                                                                                                                  +
                                                                                                                • ephemeralKeyPair: EphemeralKeyPair

                                                                                                                  The ephemeral key pair used in the account creation.

                                                                                                                  +
                                                                                                                • iss: string

                                                                                                                  A JWT issuer.

                                                                                                                  +
                                                                                                                • jwt: string

                                                                                                                  A JSON Web Token used for authentication.

                                                                                                                  +
                                                                                                                • pepper: HexInput

                                                                                                                  A hexadecimal input used for additional security.

                                                                                                                  +
                                                                                                                • proof: ZeroKnowledgeSig | Promise<ZeroKnowledgeSig>

                                                                                                                  A Zero Knowledge Signature or a promise that resolves to one.

                                                                                                                  +
                                                                                                                • OptionalproofFetchCallback?: ProofFetchCallback

                                                                                                                  Optional callback function for fetching proof.

                                                                                                                  +
                                                                                                                • uidKey: string

                                                                                                                  The claim on the JWT to identify a user. This is typically 'sub' or 'email'.

                                                                                                                  +
                                                                                                                • uidVal: string

                                                                                                                  The unique id for this user, intended to be a stable user identifier.

                                                                                                                  +
                                                                                                                • OptionalverificationKeyHash?: HexInput

                                                                                                              Returns KeylessAccount

                                                                                                            accountAddress: AccountAddress

                                                                                                            Account address associated with the account

                                                                                                            +
                                                                                                            aud: string

                                                                                                            The value of the 'aud' claim on the JWT, also known as client ID. This is the identifier for the dApp's +OIDC registration with the identity provider.

                                                                                                            +
                                                                                                            ephemeralKeyPair: EphemeralKeyPair

                                                                                                            The EphemeralKeyPair used to generate sign.

                                                                                                            +
                                                                                                            jwt: string

                                                                                                            The JWT token used to derive the account

                                                                                                            +
                                                                                                            pepper: Uint8Array

                                                                                                            A value contains 31 bytes of entropy that preserves privacy of the account. Typically fetched from a pepper provider.

                                                                                                            +
                                                                                                            proof: ZeroKnowledgeSig | undefined

                                                                                                            The zero knowledge signature (if ready) which contains the proof used to validate the EphemeralKeyPair.

                                                                                                            +
                                                                                                            proofOrPromise: ZeroKnowledgeSig | Promise<ZeroKnowledgeSig>

                                                                                                            The proof of the EphemeralKeyPair or a promise that provides the proof. This is used to allow for awaiting on +fetching the proof.

                                                                                                            +
                                                                                                            publicKey: KeylessPublicKey

                                                                                                            The KeylessPublicKey associated with the account

                                                                                                            +
                                                                                                            signingScheme: SigningScheme = SigningScheme.SingleKey

                                                                                                            Signing scheme used to sign transactions

                                                                                                            +
                                                                                                            uidKey: string

                                                                                                            The claim on the JWT to identify a user. This is typically 'sub' or 'email'.

                                                                                                            +
                                                                                                            uidVal: string

                                                                                                            The value of the uidKey claim on the JWT. This intended to be a stable user identifier.

                                                                                                            +
                                                                                                            • Serializes the transaction data into a format suitable for transmission or storage. +This function ensures that both the transaction bytes and the proof are properly serialized.

                                                                                                              +

                                                                                                              Parameters

                                                                                                              • serializer: Serializer

                                                                                                                The serializer instance used to convert the transaction data into bytes.

                                                                                                                +

                                                                                                              Returns void

                                                                                                            • Verify the given message and signature with the public key. It fetches any on chain state if needed for verification.

                                                                                                              +

                                                                                                              Parameters

                                                                                                              • args: {
                                                                                                                    aptosConfig: AptosConfig;
                                                                                                                    message: HexInput;
                                                                                                                    options?: { throwErrorWithReason?: boolean };
                                                                                                                    signature: KeylessSignature;
                                                                                                                }

                                                                                                                The arguments for verifying the signature.

                                                                                                                +
                                                                                                                • aptosConfig: AptosConfig

                                                                                                                  The configuration object for connecting to the Aptos network

                                                                                                                  +
                                                                                                                • message: HexInput

                                                                                                                  Raw message data in HexInput format.

                                                                                                                  +
                                                                                                                • Optionaloptions?: { throwErrorWithReason?: boolean }
                                                                                                                • signature: KeylessSignature

                                                                                                                  Signed message signature.

                                                                                                                  +

                                                                                                              Returns Promise<boolean>

                                                                                                              A boolean indicating whether the signature is valid.

                                                                                                              +
                                                                                                            • Deserializes the provided deserializer to create a KeylessAccount instance. +This function extracts necessary components such as the JWT, UID key, pepper, ephemeral key pair, and proof from the deserializer.

                                                                                                              +

                                                                                                              Parameters

                                                                                                              • deserializer: Deserializer

                                                                                                                The deserializer instance used to retrieve the serialized data.

                                                                                                                +

                                                                                                              Returns KeylessAccount

                                                                                                              A KeylessAccount instance created from the deserialized data.

                                                                                                              +

                                                                                                            Implementation - BCS

                                                                                                            • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                              +

                                                                                                              Returns Uint8Array

                                                                                                              the BCS representation of the Serializable instance as a byte buffer.

                                                                                                              +
                                                                                                            • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                              +

                                                                                                              Returns Hex

                                                                                                              A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                              +

                                                                                                            Methods

                                                                                                            Properties

                                                                                                            verificationKeyHash?: Uint8Array<ArrayBufferLike>

                                                                                                            The hash of the verification key used to verify the proof. This is optional and can be used to check verifying key +rotations which may invalidate the proof.

                                                                                                            +
                                                                                                            PEPPER_LENGTH: number = 31
                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/KeylessConfiguration.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/KeylessConfiguration.html new file mode 100644 index 000000000..609402db2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/KeylessConfiguration.html @@ -0,0 +1,24 @@ +KeylessConfiguration | @aptos-labs/ts-sdk - v7.0.0
                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                              Preparing search index...

                                                                                                              Class KeylessConfiguration

                                                                                                              Represents the on-chain configuration for how Keyless accounts operate.

                                                                                                              +

                                                                                                              This class encapsulates the verification key and the maximum lifespan of ephemeral key pairs, +which are essential for the functionality of Keyless accounts.

                                                                                                              +
                                                                                                              Index

                                                                                                              Implementation - Serialization

                                                                                                              maxCommitedEpkBytes: number

                                                                                                              The maximum number of bytes that can be used for the committed ephemeral public key.

                                                                                                              +
                                                                                                              maxExpHorizonSecs: number

                                                                                                              The maximum lifespan of an ephemeral key pair. This is configured on chain.

                                                                                                              +
                                                                                                              maxExtraFieldBytes: number

                                                                                                              The maximum number of bytes that can be used for the extra field.

                                                                                                              +
                                                                                                              maxIssValBytes: number

                                                                                                              The maximum number of bytes that can be used for the issuer value.

                                                                                                              +
                                                                                                              maxJwtHeaderB64Bytes: number

                                                                                                              The maximum number of bytes that can be used for the JWT header.

                                                                                                              +
                                                                                                              trainingWheelsPubkey?: EphemeralPublicKey

                                                                                                              The public key of the training wheels account.

                                                                                                              +
                                                                                                              verificationKey: Groth16VerificationKey

                                                                                                              The verification key used to verify Groth16 proofs on chain

                                                                                                              +

                                                                                                              Constructors

                                                                                                              • Parameters

                                                                                                                • args: {
                                                                                                                      maxCommitedEpkBytes?: number;
                                                                                                                      maxExpHorizonSecs?: number;
                                                                                                                      maxExtraFieldBytes?: number;
                                                                                                                      maxIssValBytes?: number;
                                                                                                                      maxJwtHeaderB64Bytes?: number;
                                                                                                                      trainingWheelsPubkey?: HexInput;
                                                                                                                      verificationKey: Groth16VerificationKey;
                                                                                                                  }

                                                                                                                Returns KeylessConfiguration

                                                                                                              Methods

                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/KeylessError.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/KeylessError.html new file mode 100644 index 000000000..f74cdd415 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/KeylessError.html @@ -0,0 +1,43 @@ +KeylessError | @aptos-labs/ts-sdk - v7.0.0
                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                Preparing search index...

                                                                                                                Class KeylessError

                                                                                                                Hierarchy

                                                                                                                • Error
                                                                                                                  • KeylessError
                                                                                                                Index

                                                                                                                Methods

                                                                                                                • Creates a .stack property on targetObject, which when accessed returns +a string representing the location in the code at which +Error.captureStackTrace() was called.

                                                                                                                  +
                                                                                                                  const myObject = {};
                                                                                                                  Error.captureStackTrace(myObject);
                                                                                                                  myObject.stack; // Similar to `new Error().stack` +
                                                                                                                  + +

                                                                                                                  The first line of the trace will be prefixed with +${myObject.name}: ${myObject.message}.

                                                                                                                  +

                                                                                                                  The optional constructorOpt argument accepts a function. If given, all frames +above constructorOpt, including constructorOpt, will be omitted from the +generated stack trace.

                                                                                                                  +

                                                                                                                  The constructorOpt argument is useful for hiding implementation +details of error generation from the user. For instance:

                                                                                                                  +
                                                                                                                  function a() {
                                                                                                                  b();
                                                                                                                  }

                                                                                                                  function b() {
                                                                                                                  c();
                                                                                                                  }

                                                                                                                  function c() {
                                                                                                                  // Create an error without stack trace to avoid calculating the stack trace twice.
                                                                                                                  const { stackTraceLimit } = Error;
                                                                                                                  Error.stackTraceLimit = 0;
                                                                                                                  const error = new Error();
                                                                                                                  Error.stackTraceLimit = stackTraceLimit;

                                                                                                                  // Capture the stack trace above function b
                                                                                                                  Error.captureStackTrace(error, b); // Neither function c, nor b is included in the stack trace
                                                                                                                  throw error;
                                                                                                                  }

                                                                                                                  a(); +
                                                                                                                  + +

                                                                                                                  Parameters

                                                                                                                  • targetObject: object
                                                                                                                  • OptionalconstructorOpt: Function

                                                                                                                  Returns void

                                                                                                                • Static constructor that creates a KeylessError instance using the KeylessErrors constant

                                                                                                                  +

                                                                                                                  Parameters

                                                                                                                  • args: { details?: string; error?: unknown; type: KeylessErrorType }
                                                                                                                    • Optionaldetails?: string

                                                                                                                      optional details to include in the error message

                                                                                                                      +
                                                                                                                    • Optionalerror?: unknown
                                                                                                                    • type: KeylessErrorType

                                                                                                                      The type of KeylessError

                                                                                                                      +

                                                                                                                  Returns KeylessError

                                                                                                                  A new KeylessError instance

                                                                                                                  +

                                                                                                                Properties

                                                                                                                cause?: unknown
                                                                                                                details?: string
                                                                                                                innerError?: unknown
                                                                                                                message: string
                                                                                                                name: string
                                                                                                                stack?: string
                                                                                                                stackTraceLimit: number

                                                                                                                The Error.stackTraceLimit property specifies the number of stack frames +collected by a stack trace (whether generated by new Error().stack or +Error.captureStackTrace(obj)).

                                                                                                                +

                                                                                                                The default value is 10 but may be set to any valid JavaScript number. Changes +will affect any stack trace captured after the value has been changed.

                                                                                                                +

                                                                                                                If set to a non-number value, or set to a negative number, stack traces will +not capture any frames.

                                                                                                                +
                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/KeylessPublicKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/KeylessPublicKey.html new file mode 100644 index 000000000..fb5a4c196 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/KeylessPublicKey.html @@ -0,0 +1,88 @@ +KeylessPublicKey | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                  Preparing search index...

                                                                                                                  Class KeylessPublicKey

                                                                                                                  Represents a Keyless Public Key used for authentication.

                                                                                                                  +

                                                                                                                  This class encapsulates the public key functionality for keyless authentication, +including methods for generating and verifying signatures, as well as serialization +and deserialization of the key. The KeylessPublicKey is represented in the SDK +as AnyPublicKey.

                                                                                                                  +

                                                                                                                  Hierarchy (View Summary)

                                                                                                                  Index

                                                                                                                  Implementation - BCS

                                                                                                                  • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                    +

                                                                                                                    Returns Uint8Array

                                                                                                                    the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                    +
                                                                                                                  • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                    +

                                                                                                                    Returns Hex

                                                                                                                    A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                    +

                                                                                                                  Implementation - Serialization

                                                                                                                  idCommitment: Uint8Array

                                                                                                                  A value representing a cryptographic commitment to a user identity.

                                                                                                                  +

                                                                                                                  It is calculated from the aud, uidKey, uidVal, pepper.

                                                                                                                  +
                                                                                                                  iss: string

                                                                                                                  The value of the 'iss' claim on the JWT which identifies the OIDC provider.

                                                                                                                  +
                                                                                                                  ID_COMMITMENT_LENGTH: number = 32

                                                                                                                  The number of bytes that idCommitment should be

                                                                                                                  +
                                                                                                                  • Serializes the current instance into a format suitable for transmission or storage. +This function ensures that all relevant fields are properly serialized, including the proof and optional fields.

                                                                                                                    +

                                                                                                                    Parameters

                                                                                                                    • serializer: Serializer

                                                                                                                      The serializer instance used to perform the serialization.

                                                                                                                      +

                                                                                                                    Returns void

                                                                                                                  • Creates a KeylessPublicKey from the JWT components plus pepper

                                                                                                                    +

                                                                                                                    Parameters

                                                                                                                    • args: { aud: string; iss: string; pepper: HexInput; uidKey: string; uidVal: string }
                                                                                                                      • aud: string

                                                                                                                        the client ID of the application

                                                                                                                        +
                                                                                                                      • iss: string

                                                                                                                        the iss of the identity

                                                                                                                        +
                                                                                                                      • pepper: HexInput

                                                                                                                        The pepper used to maintain privacy of the account

                                                                                                                        +
                                                                                                                      • uidKey: string

                                                                                                                        the key to use to get the uidVal in the JWT token

                                                                                                                        +
                                                                                                                      • uidVal: string

                                                                                                                        the value of the uidKey in the JWT token

                                                                                                                        +

                                                                                                                    Returns KeylessPublicKey

                                                                                                                    KeylessPublicKey

                                                                                                                    +
                                                                                                                  • Creates a KeylessPublicKey instance from a JWT and a pepper value. +This function is useful for generating a public key that can be used for authentication based on the provided JWT claims and pepper.

                                                                                                                    +

                                                                                                                    Parameters

                                                                                                                    • args: { jwt: string; pepper: HexInput; uidKey?: string }

                                                                                                                      The arguments for creating the KeylessPublicKey.

                                                                                                                      +
                                                                                                                      • jwt: string

                                                                                                                        The JSON Web Token to decode.

                                                                                                                        +
                                                                                                                      • pepper: HexInput

                                                                                                                        The pepper value used in the key creation process.

                                                                                                                        +
                                                                                                                      • OptionaluidKey?: string

                                                                                                                        An optional key to retrieve the unique identifier from the JWT payload, defaults to "sub".

                                                                                                                        +

                                                                                                                    Returns KeylessPublicKey

                                                                                                                    A KeylessPublicKey instance created from the provided JWT and pepper.

                                                                                                                    +
                                                                                                                  • Checks if the provided public key is a valid instance by verifying its structure and types.

                                                                                                                    +

                                                                                                                    Parameters

                                                                                                                    • publicKey: PublicKey

                                                                                                                      The public key to validate.

                                                                                                                      +

                                                                                                                    Returns boolean

                                                                                                                    A boolean indicating whether the public key is a valid instance.

                                                                                                                    +

                                                                                                                  Methods

                                                                                                                  • Verifies a keyless signature for a given message. It will fetch the keyless configuration and the JWK to +use for verification from the appropriate network as defined by the aptosConfig.

                                                                                                                    +

                                                                                                                    Parameters

                                                                                                                    • args: {
                                                                                                                          aptosConfig: AptosConfig;
                                                                                                                          message: HexInput;
                                                                                                                          options?: { throwErrorWithReason?: boolean };
                                                                                                                          signature: Signature;
                                                                                                                      }
                                                                                                                      • aptosConfig: AptosConfig

                                                                                                                        The aptos config to use for fetching the keyless configuration.

                                                                                                                        +
                                                                                                                      • message: HexInput

                                                                                                                        The message to verify the signature against.

                                                                                                                        +
                                                                                                                      • Optionaloptions?: { throwErrorWithReason?: boolean }
                                                                                                                        • OptionalthrowErrorWithReason?: boolean

                                                                                                                          Whether to throw an error with the reason for the failure instead of returning false.

                                                                                                                          +
                                                                                                                      • signature: Signature

                                                                                                                        The signature to verify.

                                                                                                                        +

                                                                                                                    Returns Promise<boolean>

                                                                                                                    true if the signature is valid

                                                                                                                    +
                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/KeylessSignature.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/KeylessSignature.html new file mode 100644 index 000000000..53f3a56bb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/KeylessSignature.html @@ -0,0 +1,36 @@ +KeylessSignature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                    Preparing search index...

                                                                                                                    Class KeylessSignature

                                                                                                                    Represents a signature of a message signed via a Keyless Account, utilizing proofs or a JWT token for authentication.

                                                                                                                    +

                                                                                                                    Hierarchy (View Summary)

                                                                                                                    Index

                                                                                                                    Implementation - BCS

                                                                                                                    • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                      +

                                                                                                                      Returns Uint8Array

                                                                                                                      the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                      +
                                                                                                                    • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                      +

                                                                                                                      Returns Hex

                                                                                                                      A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                      +

                                                                                                                    Implementation - Serialization

                                                                                                                    ephemeralCertificate: EphemeralCertificate

                                                                                                                    The inner signature ZeroKnowledgeSignature or OpenIdSignature

                                                                                                                    +
                                                                                                                    ephemeralPublicKey: EphemeralPublicKey

                                                                                                                    The ephemeral public key used to verify the signature

                                                                                                                    +
                                                                                                                    ephemeralSignature: EphemeralSignature

                                                                                                                    The signature resulting from signing with the private key of the EphemeralKeyPair

                                                                                                                    +
                                                                                                                    expiryDateSecs: number

                                                                                                                    The expiry timestamp in seconds of the EphemeralKeyPair used to sign

                                                                                                                    +
                                                                                                                    jwtHeader: string

                                                                                                                    The jwt header in the token used to create the proof/signature. In json string representation.

                                                                                                                    +

                                                                                                                    Constructors

                                                                                                                    Methods

                                                                                                                    • Get the kid of the JWT used to derive the Keyless Account used to sign.

                                                                                                                      +

                                                                                                                      Returns string

                                                                                                                      the kid as a string

                                                                                                                      +
                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/ModuleId.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/ModuleId.html new file mode 100644 index 000000000..ad1a1965e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/ModuleId.html @@ -0,0 +1,36 @@ +ModuleId | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                      Preparing search index...

                                                                                                                      Class ModuleId

                                                                                                                      Represents a ModuleId that can be serialized and deserialized. +A ModuleId consists of a module address (e.g., "0x1") and a module name (e.g., "coin").

                                                                                                                      +

                                                                                                                      Hierarchy (View Summary)

                                                                                                                      Index

                                                                                                                      Implementation - BCS

                                                                                                                      Implementation - Transactions

                                                                                                                      Methods

                                                                                                                      Properties

                                                                                                                      Implementation - BCS

                                                                                                                      • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                        +

                                                                                                                        Returns Uint8Array

                                                                                                                        the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                        +
                                                                                                                      • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                        +

                                                                                                                        Returns Hex

                                                                                                                        A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                        +

                                                                                                                      Implementation - Transactions

                                                                                                                      • Serializes the address and name properties using the provided serializer. +This function is essential for converting the object's data into a format suitable for transmission or storage.

                                                                                                                        +

                                                                                                                        Parameters

                                                                                                                        • serializer: Serializer

                                                                                                                          The serializer instance used to perform the serialization.

                                                                                                                          +

                                                                                                                        Returns void

                                                                                                                      • Converts a string literal in the format "account_address::module_name" to a ModuleId.

                                                                                                                        +

                                                                                                                        Parameters

                                                                                                                        • moduleId: `${string}::${string}`

                                                                                                                          A string literal representing the module identifier.

                                                                                                                          +

                                                                                                                        Returns ModuleId

                                                                                                                        ModuleId - The corresponding ModuleId object.

                                                                                                                        +

                                                                                                                        Error if the provided moduleId is not in the correct format.

                                                                                                                        +

                                                                                                                      Methods

                                                                                                                      • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                        +

                                                                                                                        Returns string

                                                                                                                        the hex formatas a string prefixed by 0x.

                                                                                                                        +

                                                                                                                      Properties

                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/MoveJWK.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MoveJWK.html new file mode 100644 index 000000000..edb8e68fe --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MoveJWK.html @@ -0,0 +1,28 @@ +MoveJWK | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                        Preparing search index...

                                                                                                                        Class MoveJWK

                                                                                                                        This class serves as a base class for all serializable types. It facilitates +composable serialization of complex types and enables the serialization of +instances to their BCS (Binary Canonical Serialization) representation.

                                                                                                                        +

                                                                                                                        Hierarchy (View Summary)

                                                                                                                        Index

                                                                                                                        Implementation - BCS

                                                                                                                        Constructors

                                                                                                                        Methods

                                                                                                                        Properties

                                                                                                                        alg +e +kid +kty +n +

                                                                                                                        Implementation - BCS

                                                                                                                        • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                          +

                                                                                                                          Returns Uint8Array

                                                                                                                          the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                          +
                                                                                                                        • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                          +

                                                                                                                          Returns Hex

                                                                                                                          A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                          +

                                                                                                                        Constructors

                                                                                                                        Methods

                                                                                                                        • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                          +

                                                                                                                          Returns string

                                                                                                                          the hex formatas a string prefixed by 0x.

                                                                                                                          +

                                                                                                                        Properties

                                                                                                                        alg: string
                                                                                                                        e: string
                                                                                                                        kid: string
                                                                                                                        kty: string
                                                                                                                        n: string
                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/MoveOption.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MoveOption.html new file mode 100644 index 000000000..547078151 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MoveOption.html @@ -0,0 +1,152 @@ +MoveOption | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                          Preparing search index...

                                                                                                                          Class MoveOption<T>

                                                                                                                          Represents an argument for entry functions, providing methods to serialize the argument +to BCS-serialized bytes and convert it to different formats.

                                                                                                                          +

                                                                                                                          Type Parameters

                                                                                                                          Hierarchy (View Summary)

                                                                                                                          Implements

                                                                                                                          Index

                                                                                                                          Implementation - BCS

                                                                                                                          Implementation - Transactions

                                                                                                                          Constructors

                                                                                                                          Methods

                                                                                                                          Properties

                                                                                                                          Implementation - BCS

                                                                                                                          • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                            +

                                                                                                                            Returns Hex

                                                                                                                            A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                            +
                                                                                                                          • Retrieves the inner value of the MoveOption.

                                                                                                                            +

                                                                                                                            This method is inspired by Rust's Option<T>.unwrap(), where attempting to unwrap a None value results in a panic. +This method will throw an error if the value is not present.

                                                                                                                            +

                                                                                                                            Returns T

                                                                                                                            The contained value if present.

                                                                                                                            +
                                                                                                                            const option = new MoveOption<Bool>(new Bool(true));
                                                                                                                            const value = option.unwrap(); // Returns the Bool instance +
                                                                                                                            + +

                                                                                                                            Throws an error if the MoveOption does not contain a value.

                                                                                                                            +
                                                                                                                          • Factory method to generate a MoveOption from a boolean or undefined.

                                                                                                                            +

                                                                                                                            Parameters

                                                                                                                            • Optionalvalue: boolean | null

                                                                                                                              the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

                                                                                                                              +

                                                                                                                            Returns MoveOption<Bool>

                                                                                                                            a MoveOption with an inner value value

                                                                                                                            +
                                                                                                                            MoveOption.Bool(true).isSome() === true;
                                                                                                                            MoveOption.Bool().isSome() === false;
                                                                                                                            MoveOption.Bool(undefined).isSome() === false; +
                                                                                                                            + +
                                                                                                                          • Factory method to generate a MoveOption from a number or a bigint or undefined.

                                                                                                                            +

                                                                                                                            Parameters

                                                                                                                            • Optionalvalue: AnyNumber | null

                                                                                                                              the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

                                                                                                                              +

                                                                                                                            Returns MoveOption<I128>

                                                                                                                            a MoveOption with an inner value value

                                                                                                                            +
                                                                                                                            MoveOption.I128(1).isSome() === true;
                                                                                                                            MoveOption.I128().isSome() === false;
                                                                                                                            MoveOption.I128(undefined).isSome() === false; +
                                                                                                                            + +
                                                                                                                          • Factory method to generate a MoveOption from a number or undefined.

                                                                                                                            +

                                                                                                                            Parameters

                                                                                                                            • Optionalvalue: number | null

                                                                                                                              the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

                                                                                                                              +

                                                                                                                            Returns MoveOption<I16>

                                                                                                                            a MoveOption with an inner value value

                                                                                                                            +
                                                                                                                            MoveOption.I16(1).isSome() === true;
                                                                                                                            MoveOption.I16().isSome() === false;
                                                                                                                            MoveOption.I16(undefined).isSome() === false; +
                                                                                                                            + +
                                                                                                                          • Factory method to generate a MoveOption from a number or a bigint or undefined.

                                                                                                                            +

                                                                                                                            Parameters

                                                                                                                            • Optionalvalue: AnyNumber | null

                                                                                                                              the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

                                                                                                                              +

                                                                                                                            Returns MoveOption<I256>

                                                                                                                            a MoveOption with an inner value value

                                                                                                                            +
                                                                                                                            MoveOption.I256(1).isSome() === true;
                                                                                                                            MoveOption.I256().isSome() === false;
                                                                                                                            MoveOption.I256(undefined).isSome() === false; +
                                                                                                                            + +
                                                                                                                          • Factory method to generate a MoveOption from a number or undefined.

                                                                                                                            +

                                                                                                                            Parameters

                                                                                                                            • Optionalvalue: number | null

                                                                                                                              the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

                                                                                                                              +

                                                                                                                            Returns MoveOption<I32>

                                                                                                                            a MoveOption with an inner value value

                                                                                                                            +
                                                                                                                            MoveOption.I32(1).isSome() === true;
                                                                                                                            MoveOption.I32().isSome() === false;
                                                                                                                            MoveOption.I32(undefined).isSome() === false; +
                                                                                                                            + +
                                                                                                                          • Factory method to generate a MoveOption from a number or a bigint or undefined.

                                                                                                                            +

                                                                                                                            Parameters

                                                                                                                            • Optionalvalue: AnyNumber | null

                                                                                                                              the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

                                                                                                                              +

                                                                                                                            Returns MoveOption<I64>

                                                                                                                            a MoveOption with an inner value value

                                                                                                                            +
                                                                                                                            MoveOption.I64(1).isSome() === true;
                                                                                                                            MoveOption.I64().isSome() === false;
                                                                                                                            MoveOption.I64(undefined).isSome() === false; +
                                                                                                                            + +
                                                                                                                          • Factory method to generate a MoveOption from a number or undefined.

                                                                                                                            +

                                                                                                                            Parameters

                                                                                                                            • Optionalvalue: number | null

                                                                                                                              the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

                                                                                                                              +

                                                                                                                            Returns MoveOption<I8>

                                                                                                                            a MoveOption with an inner value value

                                                                                                                            +
                                                                                                                            MoveOption.I8(1).isSome() === true;
                                                                                                                            MoveOption.I8().isSome() === false;
                                                                                                                            MoveOption.I8(undefined).isSome() === false; +
                                                                                                                            + +
                                                                                                                          • Factory method to generate a MoveOption from a string or undefined.

                                                                                                                            +

                                                                                                                            Parameters

                                                                                                                            • Optionalvalue: string | null

                                                                                                                              the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

                                                                                                                              +

                                                                                                                            Returns MoveOption<MoveString>

                                                                                                                            a MoveOption with an inner value value

                                                                                                                            +
                                                                                                                            MoveOption.MoveString("hello").isSome() === true;
                                                                                                                            MoveOption.MoveString("").isSome() === true;
                                                                                                                            MoveOption.MoveString().isSome() === false;
                                                                                                                            MoveOption.MoveString(undefined).isSome() === false; +
                                                                                                                            + +
                                                                                                                          • Factory method to generate a MoveOption from a number or a bigint or undefined.

                                                                                                                            +

                                                                                                                            Parameters

                                                                                                                            • Optionalvalue: AnyNumber | null

                                                                                                                              the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

                                                                                                                              +

                                                                                                                            Returns MoveOption<U128>

                                                                                                                            a MoveOption with an inner value value

                                                                                                                            +
                                                                                                                            MoveOption.U128(1).isSome() === true;
                                                                                                                            MoveOption.U128().isSome() === false;
                                                                                                                            MoveOption.U128(undefined).isSome() === false; +
                                                                                                                            + +
                                                                                                                          • Factory method to generate a MoveOption from a number or undefined.

                                                                                                                            +

                                                                                                                            Parameters

                                                                                                                            • Optionalvalue: number | null

                                                                                                                              the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

                                                                                                                              +

                                                                                                                            Returns MoveOption<U16>

                                                                                                                            a MoveOption with an inner value value

                                                                                                                            +
                                                                                                                            MoveOption.U16(1).isSome() === true;
                                                                                                                            MoveOption.U16().isSome() === false;
                                                                                                                            MoveOption.U16(undefined).isSome() === false; +
                                                                                                                            + +
                                                                                                                          • Factory method to generate a MoveOption from a number or a bigint or undefined.

                                                                                                                            +

                                                                                                                            Parameters

                                                                                                                            • Optionalvalue: AnyNumber | null

                                                                                                                              the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

                                                                                                                              +

                                                                                                                            Returns MoveOption<U256>

                                                                                                                            a MoveOption with an inner value value

                                                                                                                            +
                                                                                                                            MoveOption.U256(1).isSome() === true;
                                                                                                                            MoveOption.U256().isSome() === false;
                                                                                                                            MoveOption.U256(undefined).isSome() === false; +
                                                                                                                            + +
                                                                                                                          • Factory method to generate a MoveOption from a number or undefined.

                                                                                                                            +

                                                                                                                            Parameters

                                                                                                                            • Optionalvalue: number | null

                                                                                                                              the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

                                                                                                                              +

                                                                                                                            Returns MoveOption<U32>

                                                                                                                            a MoveOption with an inner value value

                                                                                                                            +
                                                                                                                            MoveOption.U32(1).isSome() === true;
                                                                                                                            MoveOption.U32().isSome() === false;
                                                                                                                            MoveOption.U32(undefined).isSome() === false; +
                                                                                                                            + +
                                                                                                                          • Factory method to generate a MoveOption from a number or a bigint or undefined.

                                                                                                                            +

                                                                                                                            Parameters

                                                                                                                            • Optionalvalue: AnyNumber | null

                                                                                                                              the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

                                                                                                                              +

                                                                                                                            Returns MoveOption<U64>

                                                                                                                            a MoveOption with an inner value value

                                                                                                                            +
                                                                                                                            MoveOption.U64(1).isSome() === true;
                                                                                                                            MoveOption.U64().isSome() === false;
                                                                                                                            MoveOption.U64(undefined).isSome() === false; +
                                                                                                                            + +
                                                                                                                          • Factory method to generate a MoveOption from a number or undefined.

                                                                                                                            +

                                                                                                                            Parameters

                                                                                                                            • Optionalvalue: number | null

                                                                                                                              the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

                                                                                                                              +

                                                                                                                            Returns MoveOption<U8>

                                                                                                                            a MoveOption with an inner value value

                                                                                                                            +
                                                                                                                            MoveOption.U8(1).isSome() === true;
                                                                                                                            MoveOption.U8().isSome() === false;
                                                                                                                            MoveOption.U8(undefined).isSome() === false; +
                                                                                                                            + +

                                                                                                                          Implementation - Transactions

                                                                                                                          Constructors

                                                                                                                          Methods

                                                                                                                          • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                            +

                                                                                                                            Returns string

                                                                                                                            the hex formatas a string prefixed by 0x.

                                                                                                                            +

                                                                                                                          Properties

                                                                                                                          value?: T
                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/MoveString.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MoveString.html new file mode 100644 index 000000000..db34a3883 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MoveString.html @@ -0,0 +1,34 @@ +MoveString | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                            Preparing search index...

                                                                                                                            Class MoveString

                                                                                                                            Represents a string value that can be serialized and deserialized. +This class extends the Serializable base class and provides methods +for serializing the string in different contexts, such as for entry +functions and script functions.

                                                                                                                            +

                                                                                                                            Hierarchy (View Summary)

                                                                                                                            Implements

                                                                                                                            Index

                                                                                                                            Implementation - BCS

                                                                                                                            Implementation - Transactions

                                                                                                                            Constructors

                                                                                                                            Methods

                                                                                                                            Properties

                                                                                                                            Implementation - BCS

                                                                                                                            • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                              +

                                                                                                                              Returns Hex

                                                                                                                              A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                              +

                                                                                                                            Implementation - Transactions

                                                                                                                            Constructors

                                                                                                                            Methods

                                                                                                                            • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                              +

                                                                                                                              Returns string

                                                                                                                              the hex formatas a string prefixed by 0x.

                                                                                                                              +

                                                                                                                            Properties

                                                                                                                            value: string
                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/MoveVector.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MoveVector.html new file mode 100644 index 000000000..b9cbe9f65 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MoveVector.html @@ -0,0 +1,171 @@ +MoveVector | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                              Preparing search index...

                                                                                                                              Class MoveVector<T>

                                                                                                                              This class is the Aptos Typescript SDK representation of a Move vector<T>, +where T represents either a primitive type (bool, u8, u64, ...) +or a BCS-serializable struct itself.

                                                                                                                              +

                                                                                                                              It is a BCS-serializable, array-like type that contains an array of values of type T, +where T is a class that implements Serializable.

                                                                                                                              +

                                                                                                                              The purpose of this class is to facilitate easy construction of BCS-serializable +Move vector<T> types.

                                                                                                                              +
                                                                                                                              // in Move: `vector<u8> [1, 2, 3, 4];`
                                                                                                                              const vecOfU8s = new MoveVector<U8>([new U8(1), new U8(2), new U8(3), new U8(4)]);
                                                                                                                              // in Move: `std::bcs::to_bytes(vector<u8> [1, 2, 3, 4]);`
                                                                                                                              const bcsBytes = vecOfU8s.toUint8Array();

                                                                                                                              // vector<vector<u8>> [ vector<u8> [1], vector<u8> [1, 2, 3, 4], vector<u8> [5, 6, 7, 8] ];
                                                                                                                              const vecOfVecs = new MoveVector<MoveVector<U8>>([
                                                                                                                              new MoveVector<U8>([new U8(1)]),
                                                                                                                              MoveVector.U8([1, 2, 3, 4]),
                                                                                                                              MoveVector.U8([5, 6, 7, 8]),
                                                                                                                              ]);

                                                                                                                              // vector<Option<u8>> [ std::option::some<u8>(1), std::option::some<u8>(2) ];
                                                                                                                              const vecOfOptionU8s = new MoveVector<MoveOption<U8>>([
                                                                                                                              MoveOption.U8(1),
                                                                                                                              MoveOption.U8(2),
                                                                                                                              ]);

                                                                                                                              // vector<MoveString> [ std::string::utf8(b"hello"), std::string::utf8(b"world") ];
                                                                                                                              const vecOfStrings = new MoveVector([new MoveString("hello"), new MoveString("world")]);
                                                                                                                              const vecOfStrings2 = MoveVector.MoveString(["hello", "world"]); +
                                                                                                                              + +

                                                                                                                              an Array of values where T is a class that implements Serializable

                                                                                                                              +

                                                                                                                              a MoveVector<T> with the values values

                                                                                                                              +

                                                                                                                              Type Parameters

                                                                                                                              Hierarchy (View Summary)

                                                                                                                              Implements

                                                                                                                              Index

                                                                                                                              Implementation - BCS

                                                                                                                              • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                +

                                                                                                                                Returns Hex

                                                                                                                                A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                +
                                                                                                                              • Factory method to generate a MoveVector from a boolean or undefined. +This method allows you to create an optional boolean value that can be used in various contexts where a boolean may or may +not be present.

                                                                                                                                +

                                                                                                                                Parameters

                                                                                                                                • values: boolean[]

                                                                                                                                  The value used to fill the MoveVector. If value is undefined, the resulting MoveVector's .isSome() method +will return false.

                                                                                                                                  +

                                                                                                                                Returns MoveVector<Bool>

                                                                                                                                A MoveVector with an inner value value.

                                                                                                                                +
                                                                                                                                * const v = MoveVector.Bool([true, false, true, false]);
                                                                                                                                +
                                                                                                                                + +
                                                                                                                              • Deserialize a MoveVector of type T, specifically where T is a Serializable and Deserializable type.

                                                                                                                                +

                                                                                                                                NOTE: This only works with a depth of one. Generics will not work.

                                                                                                                                +

                                                                                                                                NOTE: This will not work with types that aren't of the Serializable class.

                                                                                                                                +

                                                                                                                                If you're looking for a more flexible deserialization function, you can use the deserializeVector function +in the Deserializer class.

                                                                                                                                +

                                                                                                                                Type Parameters

                                                                                                                                Parameters

                                                                                                                                • deserializer: Deserializer

                                                                                                                                  the Deserializer instance to use, with bytes loaded into it already.

                                                                                                                                  +
                                                                                                                                • cls: Deserializable<T>

                                                                                                                                  the class to typecast the input values to, must be a Serializable and Deserializable type.

                                                                                                                                  +

                                                                                                                                Returns MoveVector<T>

                                                                                                                                a MoveVector of the corresponding class T

                                                                                                                                +
                                                                                                                                const vec = MoveVector.deserialize(deserializer, U64);
                                                                                                                                +
                                                                                                                                + +
                                                                                                                              • Factory method to generate a MoveVector from an array of numbers.

                                                                                                                                +

                                                                                                                                Parameters

                                                                                                                                • values: number[]

                                                                                                                                  The values used to fill the MoveVector.

                                                                                                                                  +

                                                                                                                                Returns MoveVector<I16>

                                                                                                                                A MoveVector with the inner values.

                                                                                                                                +
                                                                                                                                const v = MoveVector.I16([-1, 0, 1, 32767]);
                                                                                                                                +
                                                                                                                                + +
                                                                                                                              • Factory method to generate a MoveVector from an array of numbers.

                                                                                                                                +

                                                                                                                                Parameters

                                                                                                                                • values: number[]

                                                                                                                                  The values used to fill the MoveVector.

                                                                                                                                  +

                                                                                                                                Returns MoveVector<I32>

                                                                                                                                A MoveVector with the inner values.

                                                                                                                                +
                                                                                                                                const v = MoveVector.I32([-1, 0, 1, 2147483647]);
                                                                                                                                +
                                                                                                                                + +
                                                                                                                              • Factory method to generate a MoveVector from an array of numbers.

                                                                                                                                +

                                                                                                                                Parameters

                                                                                                                                • values: number[]

                                                                                                                                  The values used to fill the MoveVector.

                                                                                                                                  +

                                                                                                                                Returns MoveVector<I8>

                                                                                                                                A MoveVector with the inner values.

                                                                                                                                +
                                                                                                                                const v = MoveVector.I8([-1, 0, 1, 127]);
                                                                                                                                +
                                                                                                                                + +
                                                                                                                              • Factory method to generate a MoveVector from a string or undefined. +This function creates a MoveVector that encapsulates a MoveString if the provided value is not null or undefined.

                                                                                                                                +

                                                                                                                                Parameters

                                                                                                                                • values: string[]

                                                                                                                                  The value used to fill the MoveVector. If value is undefined, the resulting MoveVector's .isSome() method +will return false.

                                                                                                                                  +

                                                                                                                                Returns MoveVector<MoveString>

                                                                                                                                A MoveVector with an inner value value.

                                                                                                                                +
                                                                                                                                const v = MoveVector.MoveString(["hello", "world"]);
                                                                                                                                +
                                                                                                                                + +
                                                                                                                              • Factory method to generate a MoveVector from a number, bigint, or undefined.

                                                                                                                                +

                                                                                                                                Parameters

                                                                                                                                • values: AnyNumber[]

                                                                                                                                  The value used to fill the MoveVector. If value is undefined, the resulting MoveVector's .isSome() +method will return false.

                                                                                                                                  +

                                                                                                                                Returns MoveVector<U128>

                                                                                                                                A MoveVector with an inner value value.

                                                                                                                                +
                                                                                                                                const v = MoveVector.U128([1, 2, 3, 4]);
                                                                                                                                +
                                                                                                                                + +
                                                                                                                              • Factory method to generate a MoveOption from a number or null.

                                                                                                                                +

                                                                                                                                This method allows you to create a MoveVector that can either hold a U16 value or be empty.

                                                                                                                                +

                                                                                                                                Parameters

                                                                                                                                • values: number[]

                                                                                                                                  The value used to fill the MoveVector. If value is null or undefined, the resulting MoveVector's +.isSome() method will return false.

                                                                                                                                  +

                                                                                                                                Returns MoveVector<U16>

                                                                                                                                A MoveVector with an inner value value.

                                                                                                                                +
                                                                                                                                const v = MoveVector.U16([1, 2, 3, 4]);
                                                                                                                                +
                                                                                                                                + +
                                                                                                                              • Factory method to generate a MoveVector from a number, bigint, or null/undefined. +This allows for the creation of an optional U256 value, enabling checks for presence or absence of a value.

                                                                                                                                +

                                                                                                                                Parameters

                                                                                                                                • values: AnyNumber[]

                                                                                                                                  The value used to fill the MoveVector. If value is undefined or null, +the resulting MoveVector's .isSome() method will return false.

                                                                                                                                  +

                                                                                                                                Returns MoveVector<U256>

                                                                                                                                A MoveVector with an inner value value.

                                                                                                                                +
                                                                                                                                const v = MoveVector.U256([1, 2, 3, 4]);
                                                                                                                                +
                                                                                                                                + +
                                                                                                                              • Factory method to generate a MoveVector from a number or null.

                                                                                                                                +

                                                                                                                                This method allows you to create a MoveVector that can either hold a U32 value or be empty.

                                                                                                                                +

                                                                                                                                Parameters

                                                                                                                                • values: number[]

                                                                                                                                  The value used to fill the MoveVector. If value is null or undefined, +the resulting MoveVector's .isSome() method will return false.

                                                                                                                                  +

                                                                                                                                Returns MoveVector<U32>

                                                                                                                                A MoveVector with an inner value value.

                                                                                                                                +
                                                                                                                                const v = MoveVector.U32([1, 2, 3, 4]);
                                                                                                                                +
                                                                                                                                + +
                                                                                                                              • Factory method to generate a MoveVector from a number, bigint, or null/undefined. +This allows for the creation of an optional U64 value that can be checked for presence.

                                                                                                                                +

                                                                                                                                Parameters

                                                                                                                                • values: AnyNumber[]

                                                                                                                                  The value used to fill the MoveVector. If value is undefined or null, the resulting MoveVector's +.isSome() method will return false.

                                                                                                                                  +

                                                                                                                                Returns MoveVector<U64>

                                                                                                                                A MoveVector with an inner value value.

                                                                                                                                +
                                                                                                                                const v = MoveVector.U64([1, 2, 3, 4]);
                                                                                                                                +
                                                                                                                                + +
                                                                                                                              • Factory method to generate a MoveVector from a number or undefined.

                                                                                                                                +

                                                                                                                                This method allows you to create a MoveVector that encapsulates a U8 value, enabling you to handle optional U8 values +effectively.

                                                                                                                                +

                                                                                                                                Parameters

                                                                                                                                • values: HexInput | number[]

                                                                                                                                  The values used to fill the MoveVector. If values is undefined or null, the resulting MoveVector's +.isSome() method will return false.

                                                                                                                                  +

                                                                                                                                Returns MoveVector<U8>

                                                                                                                                A MoveVector with an inner value value.

                                                                                                                                +
                                                                                                                                const v = MoveVector.U8([1, 2, 3, 4]);
                                                                                                                                +
                                                                                                                                + +

                                                                                                                              Methods

                                                                                                                              • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                +

                                                                                                                                Returns string

                                                                                                                                the hex formatas a string prefixed by 0x.

                                                                                                                                +

                                                                                                                              Properties

                                                                                                                              values: T[]
                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiAgentRawTransaction.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiAgentRawTransaction.html new file mode 100644 index 000000000..64538050b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiAgentRawTransaction.html @@ -0,0 +1,31 @@ +MultiAgentRawTransaction | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                Preparing search index...

                                                                                                                                Class MultiAgentRawTransaction

                                                                                                                                Represents a multi-agent transaction that can be serialized and deserialized.

                                                                                                                                +

                                                                                                                                Hierarchy (View Summary)

                                                                                                                                Index

                                                                                                                                Implementation - BCS

                                                                                                                                Implementation - Transactions

                                                                                                                                Constructors

                                                                                                                                Methods

                                                                                                                                Implementation - BCS

                                                                                                                                • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                  +

                                                                                                                                  Returns Uint8Array

                                                                                                                                  the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                  +
                                                                                                                                • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                  +

                                                                                                                                  Returns Hex

                                                                                                                                  A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                  +

                                                                                                                                Implementation - Transactions

                                                                                                                                The raw transaction

                                                                                                                                +
                                                                                                                                secondary_signer_addresses: AccountAddress[]

                                                                                                                                The secondary signers on this transaction

                                                                                                                                +

                                                                                                                                Constructors

                                                                                                                                Methods

                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiAgentTransaction.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiAgentTransaction.html new file mode 100644 index 000000000..1639352d0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiAgentTransaction.html @@ -0,0 +1,38 @@ +MultiAgentTransaction | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                  Preparing search index...

                                                                                                                                  Class MultiAgentTransaction

                                                                                                                                  Represents a multi-agent transaction that can be serialized and deserialized. +This transaction includes a raw transaction, optional fee payer address, and multiple secondary signer addresses.

                                                                                                                                  +

                                                                                                                                  The raw transaction to be executed.

                                                                                                                                  +

                                                                                                                                  An array of secondary signer addresses involved in the transaction.

                                                                                                                                  +

                                                                                                                                  An optional account address that sponsors the transaction's gas fees.

                                                                                                                                  +

                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                  Index

                                                                                                                                  Implementation - BCS

                                                                                                                                  • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                    +

                                                                                                                                    Returns Uint8Array

                                                                                                                                    the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                    +
                                                                                                                                  • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                    +

                                                                                                                                    Returns Hex

                                                                                                                                    A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                    +

                                                                                                                                  Implementation - Transactions

                                                                                                                                  Methods

                                                                                                                                  • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                    +

                                                                                                                                    Returns string

                                                                                                                                    the hex formatas a string prefixed by 0x.

                                                                                                                                    +

                                                                                                                                  Properties

                                                                                                                                  feePayerAddress?: AccountAddress
                                                                                                                                  rawTransaction: RawTransaction
                                                                                                                                  secondarySignerAddresses: AccountAddress[]
                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiEd25519Account.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiEd25519Account.html new file mode 100644 index 000000000..e410a0edc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiEd25519Account.html @@ -0,0 +1,46 @@ +MultiEd25519Account | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                    Preparing search index...

                                                                                                                                    Class MultiEd25519Account

                                                                                                                                    Signer implementation for the Multi-Ed25519 authentication scheme.

                                                                                                                                    +

                                                                                                                                    Note: This authentication scheme is a legacy authentication scheme. Prefer using MultiKeyAccounts as a +MultiKeyAccount can support any type of signer, not just Ed25519. Generating a signer instance does not +create the account on-chain.

                                                                                                                                    +

                                                                                                                                    Implements

                                                                                                                                    Index

                                                                                                                                    Implementation - Account (On-Chain Model)

                                                                                                                                    accountAddress: AccountAddress

                                                                                                                                    Account address associated with the account

                                                                                                                                    +

                                                                                                                                    Public key associated with the account

                                                                                                                                    +
                                                                                                                                    signerIndices: number[]

                                                                                                                                    An array of indices where for signer[i], signerIndicies[i] is the index of the corresponding public key in +publicKey.publicKeys. Used to derive the right public key to use for verification.

                                                                                                                                    +

                                                                                                                                    The signers used to sign messages. These signers should correspond to public keys in the +MultiEd25519Account. The number of signers should be equal to this.publicKey.threshold.

                                                                                                                                    +
                                                                                                                                    signingScheme: MultiEd25519 = SigningScheme.MultiEd25519

                                                                                                                                    Signing scheme used to sign transactions

                                                                                                                                    +
                                                                                                                                    • Verify the given message and signature with the public key.

                                                                                                                                      +

                                                                                                                                      MultiEd25519 signatures do not depend on chain state, so this function is +equivalent to the synchronous verifySignature method.

                                                                                                                                      +

                                                                                                                                      Parameters

                                                                                                                                      • args: {
                                                                                                                                            aptosConfig: AptosConfig;
                                                                                                                                            message: HexInput;
                                                                                                                                            options?: { throwErrorWithReason?: boolean };
                                                                                                                                            signature: Signature;
                                                                                                                                        }

                                                                                                                                        The arguments for verifying the signature.

                                                                                                                                        +
                                                                                                                                        • aptosConfig: AptosConfig

                                                                                                                                          The configuration object for connecting to the Aptos network

                                                                                                                                          +
                                                                                                                                        • message: HexInput

                                                                                                                                          Raw message data in HexInput format.

                                                                                                                                          +
                                                                                                                                        • Optionaloptions?: { throwErrorWithReason?: boolean }
                                                                                                                                        • signature: Signature

                                                                                                                                          Signed message signature.

                                                                                                                                          +

                                                                                                                                      Returns Promise<boolean>

                                                                                                                                      A boolean indicating whether the signature is valid.

                                                                                                                                      +

                                                                                                                                    Constructors

                                                                                                                                    Methods

                                                                                                                                    Properties

                                                                                                                                    signaturesBitmap: Uint8Array
                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiEd25519PublicKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiEd25519PublicKey.html new file mode 100644 index 000000000..eed7c4f1d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiEd25519PublicKey.html @@ -0,0 +1,82 @@ +MultiEd25519PublicKey | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                      Preparing search index...

                                                                                                                                      Class MultiEd25519PublicKey

                                                                                                                                      Represents the public key of a K-of-N Ed25519 multi-sig transaction.

                                                                                                                                      +

                                                                                                                                      A K-of-N multi-sig transaction requires at least K out of N authorized signers to sign the transaction +for it to be executed. This class encapsulates the logic for managing the public keys and the threshold +for valid signatures.

                                                                                                                                      +

                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                      Index

                                                                                                                                      Implementation - BCS

                                                                                                                                      • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                        +

                                                                                                                                        Returns Uint8Array

                                                                                                                                        the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                        +
                                                                                                                                      • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                        +

                                                                                                                                        Returns Hex

                                                                                                                                        A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                        +

                                                                                                                                      Implementation - Serialization

                                                                                                                                      publicKeys: Ed25519PublicKey[]

                                                                                                                                      List of Ed25519 public keys for this LegacyMultiEd25519PublicKey

                                                                                                                                      +
                                                                                                                                      threshold: number

                                                                                                                                      The minimum number of valid signatures required, for the number of public keys specified

                                                                                                                                      +
                                                                                                                                      MAX_KEYS: 32

                                                                                                                                      Maximum number of public keys supported

                                                                                                                                      +
                                                                                                                                      MIN_KEYS: 2

                                                                                                                                      Minimum number of public keys needed

                                                                                                                                      +
                                                                                                                                      MIN_THRESHOLD: 1

                                                                                                                                      Minimum threshold for the number of valid signatures required

                                                                                                                                      +
                                                                                                                                      • Create a bitmap that holds the mapping from the original public keys +to the signatures passed in

                                                                                                                                        +

                                                                                                                                        Parameters

                                                                                                                                        • args: { bits: number[] }
                                                                                                                                          • bits: number[]

                                                                                                                                            array of the index mapping to the matching public keys

                                                                                                                                            +

                                                                                                                                        Returns Uint8Array

                                                                                                                                        Uint8array bit map

                                                                                                                                        +
                                                                                                                                      • Serializes the current instance into bytes using the provided serializer. +This allows for the conversion of the instance's data into a format suitable for transmission or storage.

                                                                                                                                        +

                                                                                                                                        Parameters

                                                                                                                                        • serializer: Serializer

                                                                                                                                          The serializer used to convert the instance into bytes.

                                                                                                                                          +

                                                                                                                                        Returns void

                                                                                                                                      • Verifies a multi-signature against a given message. +This function ensures that the provided signatures meet the required threshold and are valid for the given message.

                                                                                                                                        +

                                                                                                                                        Parameters

                                                                                                                                        • args: { message: HexInput; signature: Signature }

                                                                                                                                          The arguments for verifying the signature.

                                                                                                                                          +
                                                                                                                                          • message: HexInput

                                                                                                                                            The message that was signed.

                                                                                                                                            +
                                                                                                                                          • signature: Signature

                                                                                                                                            The multi-signature containing multiple signatures and a bitmap indicating which signatures are valid.

                                                                                                                                            +

                                                                                                                                        Returns boolean

                                                                                                                                        True if the signature is valid; otherwise, false.

                                                                                                                                        +

                                                                                                                                        Error if the bitmap and signatures length mismatch or if there are not enough valid signatures.

                                                                                                                                        +

                                                                                                                                      Implementation - Other

                                                                                                                                      • Get the index of the provided public key.

                                                                                                                                        +

                                                                                                                                        This function retrieves the index of a specified public key within the MultiKey. +If the public key does not exist, it throws an error.

                                                                                                                                        +

                                                                                                                                        Parameters

                                                                                                                                        Returns number

                                                                                                                                        The corresponding index of the public key, if it exists.

                                                                                                                                        +

                                                                                                                                        Error - If the public key is not found in the MultiKey.

                                                                                                                                        +

                                                                                                                                      Methods

                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiEd25519Signature.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiEd25519Signature.html new file mode 100644 index 000000000..310bd8407 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiEd25519Signature.html @@ -0,0 +1,53 @@ +MultiEd25519Signature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                        Preparing search index...

                                                                                                                                        Class MultiEd25519Signature

                                                                                                                                        Represents the signature of a K-of-N Ed25519 multi-sig transaction.

                                                                                                                                        +

                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                        Index

                                                                                                                                        Implementation - BCS

                                                                                                                                        • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                          +

                                                                                                                                          Returns Uint8Array

                                                                                                                                          the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                          +
                                                                                                                                        • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                          +

                                                                                                                                          Returns Hex

                                                                                                                                          A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                          +

                                                                                                                                        Implementation - Serialization

                                                                                                                                        bitmap: Uint8Array

                                                                                                                                        32-bit Bitmap representing who signed the transaction

                                                                                                                                        +

                                                                                                                                        This is represented where each public key can be masked to determine whether the message was signed by that key.

                                                                                                                                        +
                                                                                                                                        signatures: Ed25519Signature[]

                                                                                                                                        The list of underlying Ed25519 signatures

                                                                                                                                        +
                                                                                                                                        BITMAP_LEN: number = 4

                                                                                                                                        Number of bytes in the bitmap representing who signed the transaction (32-bits)

                                                                                                                                        +
                                                                                                                                        MAX_SIGNATURES_SUPPORTED: number = 32

                                                                                                                                        Maximum number of Ed25519 signatures supported

                                                                                                                                        +
                                                                                                                                        • Helper method to create a bitmap out of the specified bit positions. +This function allows you to set specific bits in a 32-bit long bitmap based on the provided positions.

                                                                                                                                          +

                                                                                                                                          Parameters

                                                                                                                                          • args: { bits: number[] }

                                                                                                                                            The arguments for creating the bitmap.

                                                                                                                                            +
                                                                                                                                            • bits: number[]

                                                                                                                                              The bitmap positions that should be set. A position starts at index 0. Valid positions should range between 0 and 31.

                                                                                                                                              +

                                                                                                                                          Returns Uint8Array

                                                                                                                                          bitmap that is 32 bits long.

                                                                                                                                          +

                                                                                                                                          Here's an example of valid bits

                                                                                                                                          +
                                                                                                                                          [0, 2, 31]
                                                                                                                                          +
                                                                                                                                          + +

                                                                                                                                          [0, 2, 31] means the 1st, 3rd and 32nd bits should be set in the bitmap. +The result bitmap should be 0b1010000000000000000000000000001

                                                                                                                                          +

                                                                                                                                        Methods

                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiKey.html new file mode 100644 index 000000000..249b38cbc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiKey.html @@ -0,0 +1,73 @@ +MultiKey | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                          Preparing search index...

                                                                                                                                          Class MultiKey

                                                                                                                                          Represents a multi-key authentication scheme for accounts, allowing multiple public keys +to be associated with a single account. This class enforces a minimum number of valid signatures +required to authorize actions, ensuring enhanced security for multi-agent accounts.

                                                                                                                                          +

                                                                                                                                          The public keys of each individual agent can be any type of public key supported by Aptos. +Since AIP-55, Aptos supports +Legacy and Unified authentication keys.

                                                                                                                                          +

                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                          Index

                                                                                                                                          Implementation - BCS

                                                                                                                                          • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                            +

                                                                                                                                            Returns Uint8Array

                                                                                                                                            the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                            +
                                                                                                                                          • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                            +

                                                                                                                                            Returns Hex

                                                                                                                                            A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                            +

                                                                                                                                          Implementation - Serialization

                                                                                                                                          • Signature for a K-of-N multi-sig transaction. +This constructor initializes a multi-signature transaction with the provided signatures and bitmap.

                                                                                                                                            +

                                                                                                                                            Parameters

                                                                                                                                            • args: { publicKeys: PublicKey[]; signaturesRequired: number }

                                                                                                                                              An object containing the parameters for the multi-signature transaction.

                                                                                                                                              +

                                                                                                                                            Returns MultiKey

                                                                                                                                            Error if the number of signatures exceeds the maximum supported, if the bitmap length is incorrect, or if the number +of signatures does not match the bitmap.

                                                                                                                                            +
                                                                                                                                          publicKeys: AnyPublicKey[]

                                                                                                                                          List of any public keys

                                                                                                                                          +
                                                                                                                                          signaturesRequired: number

                                                                                                                                          The minimum number of valid signatures required, for the number of public keys specified

                                                                                                                                          +
                                                                                                                                          • Create a bitmap that holds the mapping from the original public keys +to the signatures passed in

                                                                                                                                            +

                                                                                                                                            Parameters

                                                                                                                                            • args: { bits: number[] }
                                                                                                                                              • bits: number[]

                                                                                                                                                array of the index mapping to the matching public keys

                                                                                                                                                +

                                                                                                                                            Returns Uint8Array

                                                                                                                                            Uint8array bit map

                                                                                                                                            +
                                                                                                                                          • Serializes the object by writing its signatures and bitmap to the provided serializer. +This allows the object to be converted into a format suitable for transmission or storage.

                                                                                                                                            +

                                                                                                                                            Parameters

                                                                                                                                            • serializer: Serializer

                                                                                                                                              The serializer instance used to perform the serialization.

                                                                                                                                              +

                                                                                                                                            Returns void

                                                                                                                                          • Verifies the provided signature against the given message. +This function helps ensure the integrity and authenticity of the message by checking if the signature is valid.

                                                                                                                                            +

                                                                                                                                            Parameters

                                                                                                                                            • args: {
                                                                                                                                                  aptosConfig: AptosConfig;
                                                                                                                                                  message: HexInput;
                                                                                                                                                  options?: { throwErrorWithReason?: boolean };
                                                                                                                                                  signature: Signature;
                                                                                                                                              }

                                                                                                                                              The arguments for verifying the signature.

                                                                                                                                              +
                                                                                                                                              • aptosConfig: AptosConfig

                                                                                                                                                The Aptos configuration to use

                                                                                                                                                +
                                                                                                                                              • message: HexInput

                                                                                                                                                The message that was signed.

                                                                                                                                                +
                                                                                                                                              • Optionaloptions?: { throwErrorWithReason?: boolean }
                                                                                                                                              • signature: Signature

                                                                                                                                                The signature to verify.

                                                                                                                                                +

                                                                                                                                            Returns Promise<boolean>

                                                                                                                                          • Deserializes a MultiKeySignature from the provided deserializer. +This function retrieves the signatures and bitmap necessary for creating a MultiKeySignature object.

                                                                                                                                            +

                                                                                                                                            Parameters

                                                                                                                                            • deserializer: Deserializer

                                                                                                                                              The deserializer instance used to read the serialized data.

                                                                                                                                              +

                                                                                                                                            Returns MultiKey

                                                                                                                                          Implementation - Other

                                                                                                                                          • Get the index of the provided public key.

                                                                                                                                            +

                                                                                                                                            This function retrieves the index of a specified public key within the MultiKey. +If the public key does not exist, it throws an error.

                                                                                                                                            +

                                                                                                                                            Parameters

                                                                                                                                            • publicKey: PublicKey

                                                                                                                                              The public key to find the index for.

                                                                                                                                              +

                                                                                                                                            Returns number

                                                                                                                                            The corresponding index of the public key, if it exists.

                                                                                                                                            +

                                                                                                                                            Error - If the public key is not found in the MultiKey.

                                                                                                                                            +

                                                                                                                                          Methods

                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiKeyAccount.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiKeyAccount.html new file mode 100644 index 000000000..65863968d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiKeyAccount.html @@ -0,0 +1,76 @@ +MultiKeyAccount | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                            Preparing search index...

                                                                                                                                            Class MultiKeyAccount

                                                                                                                                            Signer implementation for the MultiKey authentication scheme.

                                                                                                                                            +

                                                                                                                                            This account utilizes an M of N signing scheme, where M and N are specified in the MultiKey. +It signs messages using an array of M accounts, each corresponding to a public key in the MultiKey.

                                                                                                                                            +

                                                                                                                                            Note: Generating a signer instance does not create the account on-chain.

                                                                                                                                            +

                                                                                                                                            Implements

                                                                                                                                            Index

                                                                                                                                            Implementation - Account (On-Chain Model)

                                                                                                                                            accountAddress: AccountAddress

                                                                                                                                            Account address associated with the account

                                                                                                                                            +
                                                                                                                                            publicKey: MultiKey

                                                                                                                                            Public key associated with the account

                                                                                                                                            +
                                                                                                                                            signerIndicies: number[]

                                                                                                                                            An array of indices where for signer[i], signerIndicies[i] is the index of the corresponding public key in +publicKey.publicKeys. Used to derive the right public key to use for verification.

                                                                                                                                            +
                                                                                                                                            signers: Account[]

                                                                                                                                            The signers used to sign messages. These signers should correspond to public keys in the +MultiKeyAccount's public key. The number of signers should be equal to this.publicKey.signaturesRequired.

                                                                                                                                            +
                                                                                                                                            signingScheme: SigningScheme = SigningScheme.MultiKey

                                                                                                                                            Signing scheme used to sign transactions

                                                                                                                                            +
                                                                                                                                            • Verify the given message and signature with the public keys.

                                                                                                                                              +

                                                                                                                                              This function checks if the provided signatures are valid for the given message using the corresponding public keys. +Note: If you are using KeylessAccounts, you must use verifySignatureAsync instead.

                                                                                                                                              +

                                                                                                                                              Parameters

                                                                                                                                              • args: { message: HexInput; signature: MultiKeySignature }

                                                                                                                                                The arguments for verifying the signature.

                                                                                                                                                +
                                                                                                                                                • message: HexInput

                                                                                                                                                  The raw message data in HexInput format.

                                                                                                                                                  +
                                                                                                                                                • signature: MultiKeySignature

                                                                                                                                                  The signed message MultiKeySignature containing multiple signatures.

                                                                                                                                                  +

                                                                                                                                              Returns boolean

                                                                                                                                              A boolean indicating whether the signatures are valid for the message.

                                                                                                                                              +
                                                                                                                                            • Verify the given message and signature with the public keys.

                                                                                                                                              +

                                                                                                                                              This function checks if the provided signatures are valid for the given message using the corresponding public keys.

                                                                                                                                              +

                                                                                                                                              Parameters

                                                                                                                                              • args: {
                                                                                                                                                    aptosConfig: AptosConfig;
                                                                                                                                                    message: HexInput;
                                                                                                                                                    options?: { throwErrorWithReason?: boolean };
                                                                                                                                                    signature: MultiKeySignature;
                                                                                                                                                }

                                                                                                                                                The arguments for verifying the signature.

                                                                                                                                                +
                                                                                                                                                • aptosConfig: AptosConfig
                                                                                                                                                • message: HexInput

                                                                                                                                                  The raw message data in HexInput format.

                                                                                                                                                  +
                                                                                                                                                • Optionaloptions?: { throwErrorWithReason?: boolean }
                                                                                                                                                  • OptionalthrowErrorWithReason?: boolean

                                                                                                                                                    Whether to throw an error with the reason for the verification failure.

                                                                                                                                                    +
                                                                                                                                                • signature: MultiKeySignature

                                                                                                                                                  The signed message MultiKeySignature containing multiple signatures.

                                                                                                                                                  +

                                                                                                                                              Returns Promise<boolean>

                                                                                                                                              A boolean indicating whether the signatures are valid for the message.

                                                                                                                                              +
                                                                                                                                            • Waits for any proofs on KeylessAccount signers to be fetched. This ensures that signing with the KeylessAccount does not +fail due to missing proofs.

                                                                                                                                              +

                                                                                                                                              Returns Promise<void>

                                                                                                                                              A promise that resolves when all proofs have been fetched.

                                                                                                                                              +

                                                                                                                                            Properties

                                                                                                                                            signaturesBitmap: Uint8Array
                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiKeySignature.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiKeySignature.html new file mode 100644 index 000000000..9d5c3bf86 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiKeySignature.html @@ -0,0 +1,56 @@ +MultiKeySignature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                              Preparing search index...

                                                                                                                                              Class MultiKeySignature

                                                                                                                                              Represents a multi-signature transaction using Ed25519 signatures. +This class allows for the creation and management of a K-of-N multi-signature scheme, +where a specified number of signatures are required to authorize a transaction.

                                                                                                                                              +

                                                                                                                                              It includes functionality to validate the number of signatures against a bitmap, +which indicates which public keys have signed the transaction.

                                                                                                                                              +

                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                              Index

                                                                                                                                              Implementation - BCS

                                                                                                                                              • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                +

                                                                                                                                                Returns Uint8Array

                                                                                                                                                the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                +
                                                                                                                                              • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                +

                                                                                                                                                Returns Hex

                                                                                                                                                A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                +

                                                                                                                                              Implementation - Serialization

                                                                                                                                              bitmap: Uint8Array

                                                                                                                                              32-bit Bitmap representing who signed the transaction

                                                                                                                                              +

                                                                                                                                              This is represented where each public key can be masked to determine whether the message was signed by that key.

                                                                                                                                              +
                                                                                                                                              signatures: AnySignature[]

                                                                                                                                              The list of underlying Ed25519 signatures

                                                                                                                                              +
                                                                                                                                              BITMAP_LEN: number = 4

                                                                                                                                              Number of bytes in the bitmap representing who signed the transaction (32-bits)

                                                                                                                                              +
                                                                                                                                              MAX_SIGNATURES_SUPPORTED: number = ...

                                                                                                                                              Maximum number of Ed25519 signatures supported

                                                                                                                                              +
                                                                                                                                              • Converts the bitmap to an array of signer indices.

                                                                                                                                                +

                                                                                                                                                Example:

                                                                                                                                                +

                                                                                                                                                bitmap: [0b10001000, 0b01000000, 0b00000000, 0b00000000] +signerIndices: [0, 4, 9]

                                                                                                                                                +

                                                                                                                                                Returns number[]

                                                                                                                                                An array of signer indices.

                                                                                                                                                +
                                                                                                                                              • Helper method to create a bitmap out of the specified bit positions

                                                                                                                                                +

                                                                                                                                                Parameters

                                                                                                                                                • args: { bits: number[] }
                                                                                                                                                  • bits: number[]

                                                                                                                                                    The bitmap positions that should be set. A position starts at index 0. +Valid position should range between 0 and 31.

                                                                                                                                                    +

                                                                                                                                                Returns Uint8Array

                                                                                                                                                bitmap that is 32bit long

                                                                                                                                                +

                                                                                                                                                Here's an example of valid bits

                                                                                                                                                +
                                                                                                                                                [0, 2, 31]
                                                                                                                                                +
                                                                                                                                                + +

                                                                                                                                                [0, 2, 31] means the 1st, 3rd and 32nd bits should be set in the bitmap. +The result bitmap should be 0b1010000000000000000000000000001

                                                                                                                                                +

                                                                                                                                              Methods

                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiSig.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiSig.html new file mode 100644 index 000000000..641b3ab44 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiSig.html @@ -0,0 +1,13 @@ +MultiSig | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                Preparing search index...

                                                                                                                                                Class MultiSig

                                                                                                                                                Represents a MultiSig account that can be serialized and deserialized.

                                                                                                                                                +

                                                                                                                                                This class encapsulates the functionality to manage multi-signature transactions, including the address of the +multi-sig account and the associated transaction payload.

                                                                                                                                                +
                                                                                                                                                Index

                                                                                                                                                Implementation - Transactions

                                                                                                                                                Methods

                                                                                                                                                Properties

                                                                                                                                                Implementation - Transactions

                                                                                                                                                Methods

                                                                                                                                                Properties

                                                                                                                                                multisig_address: AccountAddress
                                                                                                                                                transaction_payload?: MultiSigTransactionPayload
                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiSigTransactionPayload.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiSigTransactionPayload.html new file mode 100644 index 000000000..a54abf279 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/MultiSigTransactionPayload.html @@ -0,0 +1,27 @@ +MultiSigTransactionPayload | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                  Preparing search index...

                                                                                                                                                  Class MultiSigTransactionPayload

                                                                                                                                                  Represents a multi-signature transaction payload that can be serialized and deserialized. +This class is designed to encapsulate the transaction payload for multi-sig account transactions +as defined in the multisig_account.move module. Future enhancements may allow support for script +payloads as the multisig_account.move module evolves.

                                                                                                                                                  +

                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                  Index

                                                                                                                                                  Implementation - BCS

                                                                                                                                                  Implementation - Transactions

                                                                                                                                                  Methods

                                                                                                                                                  Properties

                                                                                                                                                  Implementation - BCS

                                                                                                                                                  • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                    +

                                                                                                                                                    Returns Uint8Array

                                                                                                                                                    the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                    +
                                                                                                                                                  • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                    +

                                                                                                                                                    Returns Hex

                                                                                                                                                    A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                    +

                                                                                                                                                  Implementation - Transactions

                                                                                                                                                  Methods

                                                                                                                                                  • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                    +

                                                                                                                                                    Returns string

                                                                                                                                                    the hex formatas a string prefixed by 0x.

                                                                                                                                                    +

                                                                                                                                                  Properties

                                                                                                                                                  transaction_payload: EntryFunction
                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/ParsingError.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/ParsingError.html new file mode 100644 index 000000000..a23fbecbf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/ParsingError.html @@ -0,0 +1,41 @@ +ParsingError | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                    Preparing search index...

                                                                                                                                                    Class ParsingError<T>

                                                                                                                                                    This error is used to explain why parsing failed.

                                                                                                                                                    +

                                                                                                                                                    Type Parameters

                                                                                                                                                    • T

                                                                                                                                                    Hierarchy

                                                                                                                                                    • Error
                                                                                                                                                      • ParsingError
                                                                                                                                                    Index

                                                                                                                                                    Implementation - Serialization

                                                                                                                                                    Methods

                                                                                                                                                    Properties

                                                                                                                                                    Implementation - Serialization

                                                                                                                                                    • Creates an instance of the error with a specified message and invalid reason.

                                                                                                                                                      +

                                                                                                                                                      Type Parameters

                                                                                                                                                      • T

                                                                                                                                                      Parameters

                                                                                                                                                      • message: string

                                                                                                                                                        The error message that describes the issue.

                                                                                                                                                        +
                                                                                                                                                      • invalidReason: T

                                                                                                                                                        The reason why the input is considered invalid.

                                                                                                                                                        +

                                                                                                                                                      Returns ParsingError<T>

                                                                                                                                                    invalidReason: T

                                                                                                                                                    This provides a programmatic way to access why parsing failed. Downstream devs +might want to use this to build their own error messages if the default error +messages are not suitable for their use case. This should be an enum.

                                                                                                                                                    +

                                                                                                                                                    Methods

                                                                                                                                                    • Creates a .stack property on targetObject, which when accessed returns +a string representing the location in the code at which +Error.captureStackTrace() was called.

                                                                                                                                                      +
                                                                                                                                                      const myObject = {};
                                                                                                                                                      Error.captureStackTrace(myObject);
                                                                                                                                                      myObject.stack; // Similar to `new Error().stack` +
                                                                                                                                                      + +

                                                                                                                                                      The first line of the trace will be prefixed with +${myObject.name}: ${myObject.message}.

                                                                                                                                                      +

                                                                                                                                                      The optional constructorOpt argument accepts a function. If given, all frames +above constructorOpt, including constructorOpt, will be omitted from the +generated stack trace.

                                                                                                                                                      +

                                                                                                                                                      The constructorOpt argument is useful for hiding implementation +details of error generation from the user. For instance:

                                                                                                                                                      +
                                                                                                                                                      function a() {
                                                                                                                                                      b();
                                                                                                                                                      }

                                                                                                                                                      function b() {
                                                                                                                                                      c();
                                                                                                                                                      }

                                                                                                                                                      function c() {
                                                                                                                                                      // Create an error without stack trace to avoid calculating the stack trace twice.
                                                                                                                                                      const { stackTraceLimit } = Error;
                                                                                                                                                      Error.stackTraceLimit = 0;
                                                                                                                                                      const error = new Error();
                                                                                                                                                      Error.stackTraceLimit = stackTraceLimit;

                                                                                                                                                      // Capture the stack trace above function b
                                                                                                                                                      Error.captureStackTrace(error, b); // Neither function c, nor b is included in the stack trace
                                                                                                                                                      throw error;
                                                                                                                                                      }

                                                                                                                                                      a(); +
                                                                                                                                                      + +

                                                                                                                                                      Parameters

                                                                                                                                                      • targetObject: object
                                                                                                                                                      • OptionalconstructorOpt: Function

                                                                                                                                                      Returns void

                                                                                                                                                    Properties

                                                                                                                                                    cause?: unknown
                                                                                                                                                    message: string
                                                                                                                                                    name: string
                                                                                                                                                    stack?: string
                                                                                                                                                    stackTraceLimit: number

                                                                                                                                                    The Error.stackTraceLimit property specifies the number of stack frames +collected by a stack trace (whether generated by new Error().stack or +Error.captureStackTrace(obj)).

                                                                                                                                                    +

                                                                                                                                                    The default value is 10 but may be set to any valid JavaScript number. Changes +will affect any stack trace captured after the value has been changed.

                                                                                                                                                    +

                                                                                                                                                    If set to a non-number value, or set to a negative number, stack traces will +not capture any frames.

                                                                                                                                                    +
                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.ANS.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.ANS.html new file mode 100644 index 000000000..66fc9913f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.ANS.html @@ -0,0 +1,139 @@ +ANS | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                      Preparing search index...

                                                                                                                                                      A class to handle all ANS operations.

                                                                                                                                                      +

                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                      Index

                                                                                                                                                      ANS

                                                                                                                                                      • Initializes a new instance of the Aptos class with the provided configuration. +This allows you to interact with the Aptos blockchain using the specified network settings.

                                                                                                                                                        +

                                                                                                                                                        Parameters

                                                                                                                                                        • config: AptosConfig

                                                                                                                                                          The configuration settings for the Aptos client.

                                                                                                                                                          +

                                                                                                                                                        Returns ANS

                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                        async function runExample() {
                                                                                                                                                        // Create a configuration for connecting to the Aptos testnet
                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });

                                                                                                                                                        // Initialize the Aptos client with the configuration
                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                        console.log("Aptos client initialized:", aptos);
                                                                                                                                                        }
                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                        + +
                                                                                                                                                      • Clears the target address of a domain or subdomain name, removing the address association. +After clearing, the name will no longer resolve to a specific address.

                                                                                                                                                        +

                                                                                                                                                        Parameters

                                                                                                                                                        Returns Promise<{ data: InputEntryFunctionData; transaction: SimpleTransaction }>

                                                                                                                                                        An object containing the transaction and the InputEntryFunctionData

                                                                                                                                                        +
                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                        async function runExample() {
                                                                                                                                                        // Clearing the target address for a domain name
                                                                                                                                                        const sender = Account.generate(); // replace with a real account

                                                                                                                                                        const { transaction, data } = await aptos.clearTargetAddress({
                                                                                                                                                        sender,
                                                                                                                                                        name: "test.aptos",
                                                                                                                                                        });

                                                                                                                                                        const targetAddress = await aptos.getTargetAddress({ name: "test.aptos" });
                                                                                                                                                        console.log(targetAddress); // Should log undefined after clearing
                                                                                                                                                        }
                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                        + +
                                                                                                                                                      • Fetches all top-level domain names for a specified account.

                                                                                                                                                        +

                                                                                                                                                        Parameters

                                                                                                                                                        Returns Promise<{ names: AnsName[]; total: number }>

                                                                                                                                                        A promise of an array of ANSName.

                                                                                                                                                        +
                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                        async function runExample() {
                                                                                                                                                        // Fetching all top-level domain names for a specific account
                                                                                                                                                        const domains = await aptos.getAccountDomains({
                                                                                                                                                        accountAddress: "0x1", // replace with a real account address
                                                                                                                                                        options: {
                                                                                                                                                        limit: 10, // specify the number of names to fetch
                                                                                                                                                        offset: 0, // specify the offset for pagination
                                                                                                                                                        orderBy: "created_at", // specify the order by which to sort the names
                                                                                                                                                        where: {
                                                                                                                                                        // additional filters can be specified here
                                                                                                                                                        },
                                                                                                                                                        },
                                                                                                                                                        });

                                                                                                                                                        console.log(domains);
                                                                                                                                                        }
                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                        + +
                                                                                                                                                      • Fetches all names for an account, including both top-level domains and subdomains.

                                                                                                                                                        +

                                                                                                                                                        Parameters

                                                                                                                                                        Returns Promise<{ names: AnsName[]; total: number }>

                                                                                                                                                        A promise of an array of ANSName.

                                                                                                                                                        +
                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                        async function runExample() {
                                                                                                                                                        // Fetch account names for a specific address
                                                                                                                                                        const accountNames = await aptos.getAccountNames({
                                                                                                                                                        accountAddress: "0x1", // replace with a real account address
                                                                                                                                                        options: {
                                                                                                                                                        limit: 10, // specify how many names to fetch
                                                                                                                                                        orderBy: "name", // specify the order by which to sort the names
                                                                                                                                                        },
                                                                                                                                                        });

                                                                                                                                                        console.log(accountNames);
                                                                                                                                                        }
                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                        + +
                                                                                                                                                      • Fetches all subdomain names for a specified account.

                                                                                                                                                        +

                                                                                                                                                        Parameters

                                                                                                                                                        Returns Promise<{ names: AnsName[]; total: number }>

                                                                                                                                                        A promise of an array of ANSName.

                                                                                                                                                        +
                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                        async function runExample() {
                                                                                                                                                        // Fetching subdomain names for a specific account
                                                                                                                                                        const subdomains = await aptos.getAccountSubdomains({
                                                                                                                                                        accountAddress: "0x1", // replace with a real account address
                                                                                                                                                        options: {
                                                                                                                                                        limit: 10, // specify the number of subdomains to fetch
                                                                                                                                                        offset: 0, // specify the offset for pagination
                                                                                                                                                        orderBy: "name", // specify the order by which to sort the names
                                                                                                                                                        },
                                                                                                                                                        });

                                                                                                                                                        console.log(subdomains);
                                                                                                                                                        }
                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                        + +
                                                                                                                                                      • Fetches all subdomain names for a given domain, excluding the domain itself.

                                                                                                                                                        +

                                                                                                                                                        Parameters

                                                                                                                                                        Returns Promise<{ names: AnsName[]; total: number }>

                                                                                                                                                        A promise that resolves to an array of ANSName.

                                                                                                                                                        +
                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                        async function runExample() {
                                                                                                                                                        // Fetching subdomains for a specific domain
                                                                                                                                                        const subdomains = await aptos.getDomainSubdomains({
                                                                                                                                                        domain: "test", // replace with your domain
                                                                                                                                                        options: {
                                                                                                                                                        limit: 10, // specify the number of subdomains to fetch
                                                                                                                                                        offset: 0, // specify the starting point for fetching
                                                                                                                                                        orderBy: "name", // specify the order by which to sort the results
                                                                                                                                                        },
                                                                                                                                                        });

                                                                                                                                                        console.log(subdomains);
                                                                                                                                                        }
                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                        + +
                                                                                                                                                      • Retrieve the expiration time of a domain name or subdomain name from the contract.

                                                                                                                                                        +

                                                                                                                                                        Parameters

                                                                                                                                                        • args: { name: string }

                                                                                                                                                          The arguments for retrieving the expiration.

                                                                                                                                                          +
                                                                                                                                                          • name: string

                                                                                                                                                            A string of the name to retrieve.

                                                                                                                                                            +

                                                                                                                                                        Returns Promise<number | undefined>

                                                                                                                                                        number as a unix timestamp in milliseconds.

                                                                                                                                                        +
                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                        async function runExample() {
                                                                                                                                                        // Get the expiration time for the domain "test.aptos"
                                                                                                                                                        const exp = await aptos.getExpiration({ name: "test.aptos" });

                                                                                                                                                        // Log the expiration date
                                                                                                                                                        console.log(new Date(exp)); // Outputs the expiration date
                                                                                                                                                        }
                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                        + +
                                                                                                                                                      • Fetches a single name from the indexer based on the provided name argument.

                                                                                                                                                        +

                                                                                                                                                        Parameters

                                                                                                                                                        • args: { name: string }

                                                                                                                                                          The arguments for retrieving the name.

                                                                                                                                                          +
                                                                                                                                                          • name: string

                                                                                                                                                            A string of the name to retrieve, e.g. "test.aptos.apt" or "test.apt" or "test". +Can be inclusive or exclusive of the .apt suffix and can be a subdomain.

                                                                                                                                                            +

                                                                                                                                                        Returns Promise<AnsName | undefined>

                                                                                                                                                        A promise of an ANSName or undefined if the name is not active.

                                                                                                                                                        +
                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                        async function runExample() {
                                                                                                                                                        // Fetching a name from the indexer
                                                                                                                                                        const name = await aptos.getName({ name: "test.aptos" }); // replace with a real name
                                                                                                                                                        console.log(name);
                                                                                                                                                        }
                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                        + +
                                                                                                                                                      • Retrieve the owner address of a specified domain name or subdomain name from the contract.

                                                                                                                                                        +

                                                                                                                                                        Parameters

                                                                                                                                                        • args: { name: string }

                                                                                                                                                          The arguments for retrieving the owner address.

                                                                                                                                                          +
                                                                                                                                                          • name: string

                                                                                                                                                            A string representing the name of the domain or subdomain to retrieve the owner address for.

                                                                                                                                                            +

                                                                                                                                                        Returns Promise<AccountAddress | undefined>

                                                                                                                                                        AccountAddress if the name is owned, undefined otherwise.

                                                                                                                                                        +
                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                        async function runExample() {
                                                                                                                                                        // Retrieve the owner address of "test.aptos"
                                                                                                                                                        const owner = await aptos.getOwnerAddress({ name: "test.aptos" });
                                                                                                                                                        console.log(owner); // Logs the owner address or undefined if not owned
                                                                                                                                                        }
                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                        + +
                                                                                                                                                      • Retrieve the primary name for an account. An account can have multiple names, but only one primary name, which may not exist.

                                                                                                                                                        +

                                                                                                                                                        Parameters

                                                                                                                                                        Returns Promise<string | undefined>

                                                                                                                                                        A string if the account has a primary name, undefined otherwise.

                                                                                                                                                        +
                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                        async function runExample() {
                                                                                                                                                        // Retrieve the primary name for the specified account address
                                                                                                                                                        const name = await aptos.getPrimaryName({ address: "0x1" }); // replace with a real account address
                                                                                                                                                        console.log(name);
                                                                                                                                                        }
                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                        + +
                                                                                                                                                      • Retrieve the target address of a domain or subdomain name, which indicates the address the name points to for use on-chain. +Note that the target address can point to addresses that do not own the name.

                                                                                                                                                        +

                                                                                                                                                        Parameters

                                                                                                                                                        • args: { name: string }

                                                                                                                                                          The arguments for retrieving the target address.

                                                                                                                                                          +
                                                                                                                                                          • name: string

                                                                                                                                                            A string representing the name, which can be a primary name, a subdomain, or a combination (e.g., +"primary", "primary.apt", "secondary.primary", "secondary.primary.apt").

                                                                                                                                                            +

                                                                                                                                                        Returns Promise<AccountAddress | undefined>

                                                                                                                                                        AccountAddress if the name has a target, undefined otherwise.

                                                                                                                                                        +
                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                        async function runExample() {
                                                                                                                                                        // Retrieve the target address for the specified domain name
                                                                                                                                                        const targetAddr = await aptos.getTargetAddress({ name: "test.aptos" });

                                                                                                                                                        console.log(targetAddr); // Logs the target address, e.g., 0x123...
                                                                                                                                                        }
                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                        + +
                                                                                                                                                      • Registers a new name.

                                                                                                                                                        +

                                                                                                                                                        This function allows you to register a domain or subdomain name with specific expiration policies and options.

                                                                                                                                                        +

                                                                                                                                                        Parameters

                                                                                                                                                        Returns Promise<{ data: InputEntryFunctionData; transaction: SimpleTransaction }>

                                                                                                                                                        An object containing the transaction and the InputEntryFunctionData

                                                                                                                                                        +
                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                        async function runExample() {
                                                                                                                                                        // Registering a subdomain name assuming def.apt is already registered and belongs to the sender alice.
                                                                                                                                                        const { transaction, data } = await aptos.registerName({
                                                                                                                                                        sender: "0x1", // replace with a real sender account
                                                                                                                                                        name: "test.aptos.apt",
                                                                                                                                                        expiration: {
                                                                                                                                                        policy: "subdomain:independent",
                                                                                                                                                        expirationDate: Date.now() + 30 * 24 * 60 * 60 * 1000, // expires in 30 days
                                                                                                                                                        },
                                                                                                                                                        });

                                                                                                                                                        console.log("Transaction:", transaction);
                                                                                                                                                        }
                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                        + +
                                                                                                                                                      • Renews a domain name for one year. +If a domain name was minted with V1 of the contract, it will automatically be upgraded to V2 via this transaction.

                                                                                                                                                        +

                                                                                                                                                        Parameters

                                                                                                                                                        • args: {
                                                                                                                                                              name: string;
                                                                                                                                                              options?: InputGenerateTransactionOptions;
                                                                                                                                                              sender: AccountAddressInput;
                                                                                                                                                              years?: 1;
                                                                                                                                                          }

                                                                                                                                                          The arguments for renewing the domain.

                                                                                                                                                          +
                                                                                                                                                          • name: string

                                                                                                                                                            A string representing the domain to renew. Subdomains cannot be renewed.

                                                                                                                                                            +
                                                                                                                                                          • Optionaloptions?: InputGenerateTransactionOptions

                                                                                                                                                            Optional transaction options.

                                                                                                                                                            +
                                                                                                                                                          • sender: AccountAddressInput

                                                                                                                                                            The sender account, which must be the domain owner.

                                                                                                                                                            +
                                                                                                                                                          • Optionalyears?: 1

                                                                                                                                                            The number of years to renew the name. Currently, only one year is permitted.

                                                                                                                                                            +

                                                                                                                                                        Returns Promise<{ data: InputEntryFunctionData; transaction: SimpleTransaction }>

                                                                                                                                                        An object containing the transaction and the InputEntryFunctionData

                                                                                                                                                        +
                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                        async function runExample() {
                                                                                                                                                        // Renew the domain "test" for one year
                                                                                                                                                        const { transaction, data } = await aptos.renewDomain({
                                                                                                                                                        sender: Account.generate(), // replace with a real account
                                                                                                                                                        name: "test"
                                                                                                                                                        });

                                                                                                                                                        console.log(transaction);
                                                                                                                                                        }
                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                        + +
                                                                                                                                                      • Sets the primary name for the sender account, allowing them to designate a single primary name among potentially multiple +names. An account may not have a primary name.

                                                                                                                                                        +

                                                                                                                                                        Parameters

                                                                                                                                                        Returns Promise<{ data: InputEntryFunctionData; transaction: SimpleTransaction }>

                                                                                                                                                        An object containing the transaction and the InputEntryFunctionData

                                                                                                                                                        +
                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                        async function runExample() {
                                                                                                                                                        // Set the primary name for the sender account
                                                                                                                                                        const sender = Account.generate(); // replace with a real account
                                                                                                                                                        const { transaction, data } = await aptos.setPrimaryName({ sender, name: "test.aptos" });

                                                                                                                                                        const primaryName = await aptos.getPrimaryName({ address: sender.accountAddress });
                                                                                                                                                        console.log("Primary Name:", primaryName); // Should log: "Primary Name: test.aptos"
                                                                                                                                                        }
                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                        + +
                                                                                                                                                      • Sets the target address of a domain or subdomain name, pointing it to a specified address for use on-chain. +The target address can be different from the owner of the name.

                                                                                                                                                        +

                                                                                                                                                        Parameters

                                                                                                                                                        Returns Promise<{ data: InputEntryFunctionData; transaction: SimpleTransaction }>

                                                                                                                                                        An object containing the transaction and the InputEntryFunctionData

                                                                                                                                                        +
                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                        async function runExample() {
                                                                                                                                                        // Setting the target address for a domain name
                                                                                                                                                        const sender = Account.generate(); // replace with a real account
                                                                                                                                                        const address = "0x1"; // replace with a real account address

                                                                                                                                                        const { transaction, data } = await aptos.setTargetAddress({
                                                                                                                                                        sender,
                                                                                                                                                        name: "test.aptos",
                                                                                                                                                        address,
                                                                                                                                                        });

                                                                                                                                                        const targetAddress = await aptos.getTargetAddress({ name: "test.aptos" });
                                                                                                                                                        console.log(targetAddress); // Should log the address set for "test.aptos"
                                                                                                                                                        }
                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                        + +

                                                                                                                                                      Properties

                                                                                                                                                      config: AptosConfig

                                                                                                                                                      The configuration settings for the Aptos client.

                                                                                                                                                      +
                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Account.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Account.html new file mode 100644 index 000000000..026fb3039 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Account.html @@ -0,0 +1,237 @@ +Account | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                        Preparing search index...

                                                                                                                                                        Class Account

                                                                                                                                                        A class to query all Account related queries on Aptos.

                                                                                                                                                        +

                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                        Index

                                                                                                                                                        Account

                                                                                                                                                        • Creates an instance of the Aptos client with the provided configuration.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          • config: AptosConfig

                                                                                                                                                            The configuration settings for the Aptos client.

                                                                                                                                                            +

                                                                                                                                                          Returns Account

                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Initialize the Aptos client with testnet configuration
                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET }); // specify your own network if needed
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          console.log("Aptos client initialized:", aptos);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Derives an account by providing a private key. This function resolves the provided private key type and derives the public +key from it.

                                                                                                                                                          +

                                                                                                                                                          If the privateKey is a Secp256k1 type, it derives the account using the derived public key and auth key using the SingleKey +scheme locally. +If the privateKey is an ED25519 type, it looks up the authentication key on chain to determine whether it is a Legacy ED25519 +key or a Unified ED25519 key, and then derives the account based on that.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          • args: {
                                                                                                                                                                minimumLedgerVersion?: AnyNumber;
                                                                                                                                                                options?: { throwIfNoAccountFound?: boolean };
                                                                                                                                                                privateKey: PrivateKeyInput;
                                                                                                                                                            }

                                                                                                                                                            The arguments for deriving the account.

                                                                                                                                                            +
                                                                                                                                                            • OptionalminimumLedgerVersion?: AnyNumber
                                                                                                                                                            • Optionaloptions?: { throwIfNoAccountFound?: boolean }
                                                                                                                                                            • privateKey: PrivateKeyInput

                                                                                                                                                              An account private key.

                                                                                                                                                              +

                                                                                                                                                          Returns Promise<Account>

                                                                                                                                                          The derived Account type.

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network, Ed25519PrivateKey } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Deriving an account from a private key
                                                                                                                                                          const account = await aptos.deriveAccountFromPrivateKey({
                                                                                                                                                          privateKey: new Ed25519PrivateKey("0x123") // replace with a real private key
                                                                                                                                                          });

                                                                                                                                                          console.log(account);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +

                                                                                                                                                          Note that more inspection is needed by the user to determine which account exists on-chain

                                                                                                                                                          +
                                                                                                                                                        • Derives all accounts owned by a signer. This function takes a signer (either an Account or PrivateKey) +and returns all accounts that can be derived from it, ordered by the most recently used account first.

                                                                                                                                                          +

                                                                                                                                                          Note, this function will not return accounts that require more than one signer to be used.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          • args: {
                                                                                                                                                                minimumLedgerVersion?: AnyNumber;
                                                                                                                                                                options?: { includeUnverified?: boolean; noMultiKey?: boolean };
                                                                                                                                                                signer: Account | PrivateKeyInput;
                                                                                                                                                            }

                                                                                                                                                            The arguments for deriving owned accounts

                                                                                                                                                            +
                                                                                                                                                            • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                              The minimum ledger version to wait for before querying

                                                                                                                                                              +
                                                                                                                                                            • Optionaloptions?: { includeUnverified?: boolean; noMultiKey?: boolean }
                                                                                                                                                              • OptionalincludeUnverified?: boolean

                                                                                                                                                                Whether to include unverified accounts in the results. Unverified accounts +are accounts that can be authenticated with the signer, but there is no history of the signer using the account. +Default is false.

                                                                                                                                                                +
                                                                                                                                                              • OptionalnoMultiKey?: boolean

                                                                                                                                                                If true, do not include multi-key accounts in the results. Default is false.

                                                                                                                                                                +
                                                                                                                                                            • signer: Account | PrivateKeyInput

                                                                                                                                                              The signer to derive accounts from (Account or PrivateKey)

                                                                                                                                                              +

                                                                                                                                                          Returns Promise<Account[]>

                                                                                                                                                          Promise resolving to an array of derived Account objects

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network, Ed25519Account } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function getOwnedAccounts() {
                                                                                                                                                          const signer = Ed25519Account.generate();
                                                                                                                                                          const accounts = await aptos.deriveOwnedAccountsFromSigner({
                                                                                                                                                          signer
                                                                                                                                                          });
                                                                                                                                                          const account = accounts[0];
                                                                                                                                                          console.log(account);
                                                                                                                                                          } +
                                                                                                                                                          + +
                                                                                                                                                        • Retrieves the current amount of APT for a specified account. If the account does not exist, it will return 0.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          • args: { accountAddress: AccountAddressInput; minimumLedgerVersion?: AnyNumber }

                                                                                                                                                            The arguments for the account query.

                                                                                                                                                            +
                                                                                                                                                            • accountAddress: AccountAddressInput

                                                                                                                                                              The account address for which to retrieve the APT amount.

                                                                                                                                                              +
                                                                                                                                                            • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                              Optional ledger version to sync up to before querying.

                                                                                                                                                              +

                                                                                                                                                          Returns Promise<number>

                                                                                                                                                          The current amount of APT for the specified account.

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Get the APT amount for a specific account
                                                                                                                                                          const accountAPTAmount = await aptos.getAccountAPTAmount({ accountAddress: "0x1" }); // replace with a real account address
                                                                                                                                                          console.log("Account APT Amount:", accountAPTAmount);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Queries the current amount of a specified coin held by an account.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          • args: {
                                                                                                                                                                accountAddress: AccountAddressInput;
                                                                                                                                                                coinType?: `${string}::${string}::${string}`;
                                                                                                                                                                faMetadataAddress?: AccountAddressInput;
                                                                                                                                                            }

                                                                                                                                                            The parameters for querying the account's coin amount.

                                                                                                                                                            +
                                                                                                                                                            • accountAddress: AccountAddressInput

                                                                                                                                                              The account address to query for the coin amount.

                                                                                                                                                              +
                                                                                                                                                            • OptionalcoinType?: `${string}::${string}::${string}`

                                                                                                                                                              The coin type to query. Note: If not provided, it may be automatically populated if faMetadataAddress +is specified.

                                                                                                                                                              +
                                                                                                                                                            • OptionalfaMetadataAddress?: AccountAddressInput

                                                                                                                                                              The fungible asset metadata address to query. Note: If not provided, it may be automatically +populated if coinType is specified.

                                                                                                                                                              +

                                                                                                                                                          Returns Promise<number>

                                                                                                                                                          The current amount of the specified coin held by the account.

                                                                                                                                                          +

                                                                                                                                                          Use getBalance({ accountAddress, asset }) instead. +This method is slated for removal in a future release.

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Prefer the new API
                                                                                                                                                          const amount = await aptos.getBalance({ accountAddress: "0x1", asset: "0x1::aptos_coin::AptosCoin" });
                                                                                                                                                          console.log(`Balance: ${amount}`);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Retrieves the current count of an account's coins aggregated across all types.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          • args: { accountAddress: AccountAddressInput; minimumLedgerVersion?: AnyNumber }

                                                                                                                                                            The parameters for the account coins count query.

                                                                                                                                                            +
                                                                                                                                                            • accountAddress: AccountAddressInput

                                                                                                                                                              The account address we want to get the total count for.

                                                                                                                                                              +
                                                                                                                                                            • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                              Optional ledger version to sync up to before querying.

                                                                                                                                                              +

                                                                                                                                                          Returns Promise<number>

                                                                                                                                                          The current count of the aggregated coins for the specified account.

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Getting the account coins count for a specific account
                                                                                                                                                          const accountCoinsCount = await aptos.getAccountCoinsCount({ accountAddress: "0x1" }); // replace with a real account address
                                                                                                                                                          console.log("Account Coins Count:", accountCoinsCount);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Retrieves the coins data for a specified account.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          • args: {
                                                                                                                                                                accountAddress: AccountAddressInput;
                                                                                                                                                                minimumLedgerVersion?: AnyNumber;
                                                                                                                                                                options?: PaginationArgs & OrderByArg<
                                                                                                                                                                    {
                                                                                                                                                                        amount: any;
                                                                                                                                                                        asset_type: string;
                                                                                                                                                                        is_frozen: boolean;
                                                                                                                                                                        is_primary: boolean;
                                                                                                                                                                        last_transaction_timestamp?: any;
                                                                                                                                                                        last_transaction_version?: any;
                                                                                                                                                                        metadata?: | {
                                                                                                                                                                            asset_type: string;
                                                                                                                                                                            creator_address: string;
                                                                                                                                                                            decimals: number;
                                                                                                                                                                            icon_uri?: string
                                                                                                                                                                            | null;
                                                                                                                                                                            last_transaction_timestamp: any;
                                                                                                                                                                            last_transaction_version: any;
                                                                                                                                                                            name: string;
                                                                                                                                                                            project_uri?: string | null;
                                                                                                                                                                            supply_aggregator_table_handle_v1?: string | null;
                                                                                                                                                                            supply_aggregator_table_key_v1?: string | null;
                                                                                                                                                                            symbol: string;
                                                                                                                                                                            token_standard: string;
                                                                                                                                                                        }
                                                                                                                                                                        | null;
                                                                                                                                                                        owner_address: string;
                                                                                                                                                                        storage_id: string;
                                                                                                                                                                        token_standard: string;
                                                                                                                                                                    },
                                                                                                                                                                > & WhereArg<CurrentFungibleAssetBalancesBoolExp>;
                                                                                                                                                            }
                                                                                                                                                            • accountAddress: AccountAddressInput

                                                                                                                                                              The account address for which to retrieve the coin's data.

                                                                                                                                                              +
                                                                                                                                                            • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                              Optional ledger version to sync up to before querying.

                                                                                                                                                              +
                                                                                                                                                            • Optionaloptions?: PaginationArgs & OrderByArg<
                                                                                                                                                                  {
                                                                                                                                                                      amount: any;
                                                                                                                                                                      asset_type: string;
                                                                                                                                                                      is_frozen: boolean;
                                                                                                                                                                      is_primary: boolean;
                                                                                                                                                                      last_transaction_timestamp?: any;
                                                                                                                                                                      last_transaction_version?: any;
                                                                                                                                                                      metadata?: | {
                                                                                                                                                                          asset_type: string;
                                                                                                                                                                          creator_address: string;
                                                                                                                                                                          decimals: number;
                                                                                                                                                                          icon_uri?: string
                                                                                                                                                                          | null;
                                                                                                                                                                          last_transaction_timestamp: any;
                                                                                                                                                                          last_transaction_version: any;
                                                                                                                                                                          name: string;
                                                                                                                                                                          project_uri?: string | null;
                                                                                                                                                                          supply_aggregator_table_handle_v1?: string | null;
                                                                                                                                                                          supply_aggregator_table_key_v1?: string | null;
                                                                                                                                                                          symbol: string;
                                                                                                                                                                          token_standard: string;
                                                                                                                                                                      }
                                                                                                                                                                      | null;
                                                                                                                                                                      owner_address: string;
                                                                                                                                                                      storage_id: string;
                                                                                                                                                                      token_standard: string;
                                                                                                                                                                  },
                                                                                                                                                              > & WhereArg<CurrentFungibleAssetBalancesBoolExp>

                                                                                                                                                          Returns Promise<
                                                                                                                                                              {
                                                                                                                                                                  amount: any;
                                                                                                                                                                  asset_type: string;
                                                                                                                                                                  is_frozen: boolean;
                                                                                                                                                                  is_primary: boolean;
                                                                                                                                                                  last_transaction_timestamp?: any;
                                                                                                                                                                  last_transaction_version?: any;
                                                                                                                                                                  metadata?: | {
                                                                                                                                                                      asset_type: string;
                                                                                                                                                                      creator_address: string;
                                                                                                                                                                      decimals: number;
                                                                                                                                                                      icon_uri?: string
                                                                                                                                                                      | null;
                                                                                                                                                                      last_transaction_timestamp: any;
                                                                                                                                                                      last_transaction_version: any;
                                                                                                                                                                      name: string;
                                                                                                                                                                      project_uri?: string | null;
                                                                                                                                                                      supply_aggregator_table_handle_v1?: string | null;
                                                                                                                                                                      supply_aggregator_table_key_v1?: string | null;
                                                                                                                                                                      symbol: string;
                                                                                                                                                                      token_standard: string;
                                                                                                                                                                  }
                                                                                                                                                                  | null;
                                                                                                                                                                  owner_address: string;
                                                                                                                                                                  storage_id: string;
                                                                                                                                                                  token_standard: string;
                                                                                                                                                              }[],
                                                                                                                                                          >

                                                                                                                                                          An array containing the coins data for the specified account.

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Fetching coins data for a specific account
                                                                                                                                                          const accountCoinsData = await aptos.getAccountCoinsData({
                                                                                                                                                          accountAddress: "0x1", // replace with a real account address
                                                                                                                                                          options: {
                                                                                                                                                          limit: 10, // specify the number of results to return
                                                                                                                                                          orderBy: { asset_type: "asc" }, // specify the order of results
                                                                                                                                                          },
                                                                                                                                                          });

                                                                                                                                                          console.log(accountCoinsData);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Queries for all collections that an account currently has tokens for, including NFTs, fungible tokens, and soulbound tokens. +If you want to filter by a specific token standard, you can pass an optional tokenStandard parameter.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          • args: {
                                                                                                                                                                accountAddress: AccountAddressInput;
                                                                                                                                                                minimumLedgerVersion?: AnyNumber;
                                                                                                                                                                options?: TokenStandardArg & PaginationArgs & OrderByArg<
                                                                                                                                                                    {
                                                                                                                                                                        collection_id?: string
                                                                                                                                                                        | null;
                                                                                                                                                                        collection_name?: string | null;
                                                                                                                                                                        collection_uri?: string | null;
                                                                                                                                                                        creator_address?: string | null;
                                                                                                                                                                        current_collection?:
                                                                                                                                                                            | {
                                                                                                                                                                                collection_id: string;
                                                                                                                                                                                collection_name: string;
                                                                                                                                                                                creator_address: string;
                                                                                                                                                                                current_supply: any;
                                                                                                                                                                                description: string;
                                                                                                                                                                                last_transaction_timestamp: any;
                                                                                                                                                                                last_transaction_version: any;
                                                                                                                                                                                max_supply?: any;
                                                                                                                                                                                mutable_description?: boolean
                                                                                                                                                                                | null;
                                                                                                                                                                                mutable_uri?: boolean | null;
                                                                                                                                                                                table_handle_v1?: string | null;
                                                                                                                                                                                token_standard: string;
                                                                                                                                                                                total_minted_v2?: any;
                                                                                                                                                                                uri: string;
                                                                                                                                                                            }
                                                                                                                                                                            | null;
                                                                                                                                                                        distinct_tokens?: any;
                                                                                                                                                                        last_transaction_version?: any;
                                                                                                                                                                        owner_address?: string
                                                                                                                                                                        | null;
                                                                                                                                                                        single_token_uri?: string | null;
                                                                                                                                                                    },
                                                                                                                                                                >;
                                                                                                                                                            }
                                                                                                                                                            • accountAddress: AccountAddressInput

                                                                                                                                                              The account address we want to get the collections for.

                                                                                                                                                              +
                                                                                                                                                            • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                              Optional ledger version to sync up to before querying.

                                                                                                                                                              +
                                                                                                                                                            • Optionaloptions?: TokenStandardArg & PaginationArgs & OrderByArg<
                                                                                                                                                                  {
                                                                                                                                                                      collection_id?: string
                                                                                                                                                                      | null;
                                                                                                                                                                      collection_name?: string | null;
                                                                                                                                                                      collection_uri?: string | null;
                                                                                                                                                                      creator_address?: string | null;
                                                                                                                                                                      current_collection?:
                                                                                                                                                                          | {
                                                                                                                                                                              collection_id: string;
                                                                                                                                                                              collection_name: string;
                                                                                                                                                                              creator_address: string;
                                                                                                                                                                              current_supply: any;
                                                                                                                                                                              description: string;
                                                                                                                                                                              last_transaction_timestamp: any;
                                                                                                                                                                              last_transaction_version: any;
                                                                                                                                                                              max_supply?: any;
                                                                                                                                                                              mutable_description?: boolean
                                                                                                                                                                              | null;
                                                                                                                                                                              mutable_uri?: boolean | null;
                                                                                                                                                                              table_handle_v1?: string | null;
                                                                                                                                                                              token_standard: string;
                                                                                                                                                                              total_minted_v2?: any;
                                                                                                                                                                              uri: string;
                                                                                                                                                                          }
                                                                                                                                                                          | null;
                                                                                                                                                                      distinct_tokens?: any;
                                                                                                                                                                      last_transaction_version?: any;
                                                                                                                                                                      owner_address?: string
                                                                                                                                                                      | null;
                                                                                                                                                                      single_token_uri?: string | null;
                                                                                                                                                                  },
                                                                                                                                                              >

                                                                                                                                                          Returns Promise<
                                                                                                                                                              {
                                                                                                                                                                  collection_id?: string
                                                                                                                                                                  | null;
                                                                                                                                                                  collection_name?: string | null;
                                                                                                                                                                  collection_uri?: string | null;
                                                                                                                                                                  creator_address?: string | null;
                                                                                                                                                                  current_collection?:
                                                                                                                                                                      | {
                                                                                                                                                                          collection_id: string;
                                                                                                                                                                          collection_name: string;
                                                                                                                                                                          creator_address: string;
                                                                                                                                                                          current_supply: any;
                                                                                                                                                                          description: string;
                                                                                                                                                                          last_transaction_timestamp: any;
                                                                                                                                                                          last_transaction_version: any;
                                                                                                                                                                          max_supply?: any;
                                                                                                                                                                          mutable_description?: boolean
                                                                                                                                                                          | null;
                                                                                                                                                                          mutable_uri?: boolean | null;
                                                                                                                                                                          table_handle_v1?: string | null;
                                                                                                                                                                          token_standard: string;
                                                                                                                                                                          total_minted_v2?: any;
                                                                                                                                                                          uri: string;
                                                                                                                                                                      }
                                                                                                                                                                      | null;
                                                                                                                                                                  distinct_tokens?: any;
                                                                                                                                                                  last_transaction_version?: any;
                                                                                                                                                                  owner_address?: string
                                                                                                                                                                  | null;
                                                                                                                                                                  single_token_uri?: string | null;
                                                                                                                                                              }[],
                                                                                                                                                          >

                                                                                                                                                          Collections array with the collections data.

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Get account collections with owned tokens for a specific account
                                                                                                                                                          const accountCollectionsWithOwnedTokens = await aptos.getAccountCollectionsWithOwnedTokens({
                                                                                                                                                          accountAddress: "0x1", // replace with a real account address
                                                                                                                                                          options: {
                                                                                                                                                          tokenStandard: "NFT", // specify the token standard if needed
                                                                                                                                                          limit: 10, // specify the number of results to return
                                                                                                                                                          },
                                                                                                                                                          });

                                                                                                                                                          console.log(accountCollectionsWithOwnedTokens);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Queries the current state for an Aptos account given its account address.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          Returns Promise<AccountData>

                                                                                                                                                          The account data.

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Retrieve account information for a specific address
                                                                                                                                                          const accountInfo = await aptos.getAccountInfo({ accountAddress: "0x1" }); // replace with a real account address
                                                                                                                                                          console.log(accountInfo);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Queries for a specific account module given an account address and module name.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          Returns Promise<MoveModuleBytecode>

                                                                                                                                                          The account module associated with the specified account address and module name.

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Get the account module for a specific account address and module name
                                                                                                                                                          const module = await aptos.getAccountModule({
                                                                                                                                                          accountAddress: "0x1", // replace with a real account address
                                                                                                                                                          moduleName: "MyModule" // specify the module name
                                                                                                                                                          });

                                                                                                                                                          console.log(module);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Queries for all modules in an account given an account address. +This function may call the API multiple times to auto paginate through results.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          Returns Promise<MoveModuleBytecode[]>

                                                                                                                                                            +
                                                                                                                                                          • The account modules associated with the specified address.
                                                                                                                                                          • +
                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Fetching account modules for a specific account
                                                                                                                                                          const accountModules = await aptos.getAccountModules({
                                                                                                                                                          accountAddress: "0x1", // replace with a real account address
                                                                                                                                                          options: {
                                                                                                                                                          limit: 10, // limiting to 10 modules
                                                                                                                                                          },
                                                                                                                                                          });

                                                                                                                                                          console.log(accountModules);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Queries for a page of modules in an account given an account address.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          Returns Promise<{ cursor: string | undefined; modules: MoveModuleBytecode[] }>

                                                                                                                                                            +
                                                                                                                                                          • The account modules associated with the specified address. Along with a cursor for future pagination. If the cursor is undefined, it means there are no more modules to fetch.
                                                                                                                                                          • +
                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Fetching account modules for a specific account
                                                                                                                                                          const {modules, cursor} = await aptos.getAccountModulesPage({
                                                                                                                                                          accountAddress: "0x1", // replace with a real account address
                                                                                                                                                          options: {
                                                                                                                                                          cursor: undefined, // starting from the first module
                                                                                                                                                          limit: 10, // limiting to 10 modules
                                                                                                                                                          },
                                                                                                                                                          });

                                                                                                                                                          console.log(modules);
                                                                                                                                                          console.log(`More to fetch: ${cursor !== undefined}`);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Queries an account's owned objects.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          • args: {
                                                                                                                                                                accountAddress: AccountAddressInput;
                                                                                                                                                                minimumLedgerVersion?: AnyNumber;
                                                                                                                                                                options?: PaginationArgs & OrderByArg<
                                                                                                                                                                    {
                                                                                                                                                                        allow_ungated_transfer: boolean;
                                                                                                                                                                        is_deleted: boolean;
                                                                                                                                                                        last_guid_creation_num: any;
                                                                                                                                                                        last_transaction_version: any;
                                                                                                                                                                        object_address: string;
                                                                                                                                                                        owner_address: string;
                                                                                                                                                                        state_key_hash: string;
                                                                                                                                                                    },
                                                                                                                                                                >;
                                                                                                                                                            }
                                                                                                                                                            • accountAddress: AccountAddressInput

                                                                                                                                                              The account address we want to get the objects for.

                                                                                                                                                              +
                                                                                                                                                            • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                              Optional ledger version to sync up to before querying.

                                                                                                                                                              +
                                                                                                                                                            • Optionaloptions?: PaginationArgs & OrderByArg<
                                                                                                                                                                  {
                                                                                                                                                                      allow_ungated_transfer: boolean;
                                                                                                                                                                      is_deleted: boolean;
                                                                                                                                                                      last_guid_creation_num: any;
                                                                                                                                                                      last_transaction_version: any;
                                                                                                                                                                      object_address: string;
                                                                                                                                                                      owner_address: string;
                                                                                                                                                                      state_key_hash: string;
                                                                                                                                                                  },
                                                                                                                                                              >

                                                                                                                                                          Returns Promise<
                                                                                                                                                              {
                                                                                                                                                                  allow_ungated_transfer: boolean;
                                                                                                                                                                  is_deleted: boolean;
                                                                                                                                                                  last_guid_creation_num: any;
                                                                                                                                                                  last_transaction_version: any;
                                                                                                                                                                  object_address: string;
                                                                                                                                                                  owner_address: string;
                                                                                                                                                                  state_key_hash: string;
                                                                                                                                                              }[],
                                                                                                                                                          >

                                                                                                                                                          Objects array with the object data.

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Get the objects owned by the specified account
                                                                                                                                                          const accountOwnedObjects = await aptos.getAccountOwnedObjects({
                                                                                                                                                          accountAddress: "0x1", // replace with a real account address
                                                                                                                                                          minimumLedgerVersion: 1, // optional, specify if needed
                                                                                                                                                          options: {
                                                                                                                                                          offset: 0, // optional, specify if needed
                                                                                                                                                          limit: 10, // optional, specify if needed
                                                                                                                                                          orderBy: "created_at", // optional, specify if needed
                                                                                                                                                          },
                                                                                                                                                          });

                                                                                                                                                          console.log(accountOwnedObjects);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Queries the tokens currently owned by a specified account, including NFTs and fungible tokens. +If desired, you can filter the results by a specific token standard.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          • args: {
                                                                                                                                                                accountAddress: AccountAddressInput;
                                                                                                                                                                minimumLedgerVersion?: AnyNumber;
                                                                                                                                                                options?: TokenStandardArg & PaginationArgs & OrderByArg<
                                                                                                                                                                    {
                                                                                                                                                                        amount: any;
                                                                                                                                                                        current_token_data?: | {
                                                                                                                                                                            collection_id: string;
                                                                                                                                                                            current_collection?: | {
                                                                                                                                                                                collection_id: string;
                                                                                                                                                                                collection_name: string;
                                                                                                                                                                                creator_address: string;
                                                                                                                                                                                current_supply: any;
                                                                                                                                                                                description: string;
                                                                                                                                                                                last_transaction_timestamp: any;
                                                                                                                                                                                last_transaction_version: any;
                                                                                                                                                                                max_supply?: any;
                                                                                                                                                                                mutable_description?: boolean
                                                                                                                                                                                | null;
                                                                                                                                                                                mutable_uri?: boolean | null;
                                                                                                                                                                                table_handle_v1?: string | null;
                                                                                                                                                                                token_standard: string;
                                                                                                                                                                                total_minted_v2?: any;
                                                                                                                                                                                uri: string;
                                                                                                                                                                            }
                                                                                                                                                                            | null;
                                                                                                                                                                            decimals?: any;
                                                                                                                                                                            description: string;
                                                                                                                                                                            is_fungible_v2?: boolean
                                                                                                                                                                            | null;
                                                                                                                                                                            largest_property_version_v1?: any;
                                                                                                                                                                            last_transaction_timestamp: any;
                                                                                                                                                                            last_transaction_version: any;
                                                                                                                                                                            maximum?: any;
                                                                                                                                                                            supply?: any;
                                                                                                                                                                            token_data_id: string;
                                                                                                                                                                            token_name: string;
                                                                                                                                                                            token_properties: any;
                                                                                                                                                                            token_standard: string;
                                                                                                                                                                            token_uri: string;
                                                                                                                                                                        }
                                                                                                                                                                        | null;
                                                                                                                                                                        is_fungible_v2?: boolean
                                                                                                                                                                        | null;
                                                                                                                                                                        is_soulbound_v2?: boolean | null;
                                                                                                                                                                        last_transaction_timestamp: any;
                                                                                                                                                                        last_transaction_version: any;
                                                                                                                                                                        owner_address: string;
                                                                                                                                                                        property_version_v1: any;
                                                                                                                                                                        storage_id: string;
                                                                                                                                                                        table_type_v1?: string | null;
                                                                                                                                                                        token_data_id: string;
                                                                                                                                                                        token_properties_mutated_v1?: any;
                                                                                                                                                                        token_standard: string;
                                                                                                                                                                    },
                                                                                                                                                                >;
                                                                                                                                                            }
                                                                                                                                                            • accountAddress: AccountAddressInput

                                                                                                                                                              The account address for which to retrieve owned tokens.

                                                                                                                                                              +
                                                                                                                                                            • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                              Optional ledger version to sync up to before querying.

                                                                                                                                                              +
                                                                                                                                                            • Optionaloptions?: TokenStandardArg & PaginationArgs & OrderByArg<
                                                                                                                                                                  {
                                                                                                                                                                      amount: any;
                                                                                                                                                                      current_token_data?: | {
                                                                                                                                                                          collection_id: string;
                                                                                                                                                                          current_collection?: | {
                                                                                                                                                                              collection_id: string;
                                                                                                                                                                              collection_name: string;
                                                                                                                                                                              creator_address: string;
                                                                                                                                                                              current_supply: any;
                                                                                                                                                                              description: string;
                                                                                                                                                                              last_transaction_timestamp: any;
                                                                                                                                                                              last_transaction_version: any;
                                                                                                                                                                              max_supply?: any;
                                                                                                                                                                              mutable_description?: boolean
                                                                                                                                                                              | null;
                                                                                                                                                                              mutable_uri?: boolean | null;
                                                                                                                                                                              table_handle_v1?: string | null;
                                                                                                                                                                              token_standard: string;
                                                                                                                                                                              total_minted_v2?: any;
                                                                                                                                                                              uri: string;
                                                                                                                                                                          }
                                                                                                                                                                          | null;
                                                                                                                                                                          decimals?: any;
                                                                                                                                                                          description: string;
                                                                                                                                                                          is_fungible_v2?: boolean
                                                                                                                                                                          | null;
                                                                                                                                                                          largest_property_version_v1?: any;
                                                                                                                                                                          last_transaction_timestamp: any;
                                                                                                                                                                          last_transaction_version: any;
                                                                                                                                                                          maximum?: any;
                                                                                                                                                                          supply?: any;
                                                                                                                                                                          token_data_id: string;
                                                                                                                                                                          token_name: string;
                                                                                                                                                                          token_properties: any;
                                                                                                                                                                          token_standard: string;
                                                                                                                                                                          token_uri: string;
                                                                                                                                                                      }
                                                                                                                                                                      | null;
                                                                                                                                                                      is_fungible_v2?: boolean
                                                                                                                                                                      | null;
                                                                                                                                                                      is_soulbound_v2?: boolean | null;
                                                                                                                                                                      last_transaction_timestamp: any;
                                                                                                                                                                      last_transaction_version: any;
                                                                                                                                                                      owner_address: string;
                                                                                                                                                                      property_version_v1: any;
                                                                                                                                                                      storage_id: string;
                                                                                                                                                                      table_type_v1?: string | null;
                                                                                                                                                                      token_data_id: string;
                                                                                                                                                                      token_properties_mutated_v1?: any;
                                                                                                                                                                      token_standard: string;
                                                                                                                                                                  },
                                                                                                                                                              >

                                                                                                                                                          Returns Promise<
                                                                                                                                                              {
                                                                                                                                                                  amount: any;
                                                                                                                                                                  current_token_data?: | {
                                                                                                                                                                      collection_id: string;
                                                                                                                                                                      current_collection?: | {
                                                                                                                                                                          collection_id: string;
                                                                                                                                                                          collection_name: string;
                                                                                                                                                                          creator_address: string;
                                                                                                                                                                          current_supply: any;
                                                                                                                                                                          description: string;
                                                                                                                                                                          last_transaction_timestamp: any;
                                                                                                                                                                          last_transaction_version: any;
                                                                                                                                                                          max_supply?: any;
                                                                                                                                                                          mutable_description?: boolean
                                                                                                                                                                          | null;
                                                                                                                                                                          mutable_uri?: boolean | null;
                                                                                                                                                                          table_handle_v1?: string | null;
                                                                                                                                                                          token_standard: string;
                                                                                                                                                                          total_minted_v2?: any;
                                                                                                                                                                          uri: string;
                                                                                                                                                                      }
                                                                                                                                                                      | null;
                                                                                                                                                                      decimals?: any;
                                                                                                                                                                      description: string;
                                                                                                                                                                      is_fungible_v2?: boolean
                                                                                                                                                                      | null;
                                                                                                                                                                      largest_property_version_v1?: any;
                                                                                                                                                                      last_transaction_timestamp: any;
                                                                                                                                                                      last_transaction_version: any;
                                                                                                                                                                      maximum?: any;
                                                                                                                                                                      supply?: any;
                                                                                                                                                                      token_data_id: string;
                                                                                                                                                                      token_name: string;
                                                                                                                                                                      token_properties: any;
                                                                                                                                                                      token_standard: string;
                                                                                                                                                                      token_uri: string;
                                                                                                                                                                  }
                                                                                                                                                                  | null;
                                                                                                                                                                  is_fungible_v2?: boolean
                                                                                                                                                                  | null;
                                                                                                                                                                  is_soulbound_v2?: boolean | null;
                                                                                                                                                                  last_transaction_timestamp: any;
                                                                                                                                                                  last_transaction_version: any;
                                                                                                                                                                  owner_address: string;
                                                                                                                                                                  property_version_v1: any;
                                                                                                                                                                  storage_id: string;
                                                                                                                                                                  table_type_v1?: string | null;
                                                                                                                                                                  token_data_id: string;
                                                                                                                                                                  token_properties_mutated_v1?: any;
                                                                                                                                                                  token_standard: string;
                                                                                                                                                              }[],
                                                                                                                                                          >

                                                                                                                                                          An array of tokens with their respective data.

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Get the tokens owned by a specific account
                                                                                                                                                          const accountOwnedTokens = await aptos.getAccountOwnedTokens({
                                                                                                                                                          accountAddress: "0x1", // replace with a real account address
                                                                                                                                                          options: {
                                                                                                                                                          limit: 10, // specify how many tokens to return
                                                                                                                                                          orderBy: "created_at", // specify the order of the results
                                                                                                                                                          },
                                                                                                                                                          });

                                                                                                                                                          console.log(accountOwnedTokens);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Queries all current tokens of a specific collection that an account owns by the collection address. +This query returns all tokens (v1 and v2 standards) an account owns, including NFTs, fungible, soulbound, etc. +If you want to get only the token from a specific standard, you can pass an optional tokenStandard parameter.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          • args: {
                                                                                                                                                                accountAddress: AccountAddressInput;
                                                                                                                                                                collectionAddress: AccountAddressInput;
                                                                                                                                                                minimumLedgerVersion?: AnyNumber;
                                                                                                                                                                options?: TokenStandardArg & PaginationArgs & OrderByArg<
                                                                                                                                                                    {
                                                                                                                                                                        amount: any;
                                                                                                                                                                        current_token_data?: | {
                                                                                                                                                                            collection_id: string;
                                                                                                                                                                            current_collection?: | {
                                                                                                                                                                                collection_id: string;
                                                                                                                                                                                collection_name: string;
                                                                                                                                                                                creator_address: string;
                                                                                                                                                                                current_supply: any;
                                                                                                                                                                                description: string;
                                                                                                                                                                                last_transaction_timestamp: any;
                                                                                                                                                                                last_transaction_version: any;
                                                                                                                                                                                max_supply?: any;
                                                                                                                                                                                mutable_description?: boolean
                                                                                                                                                                                | null;
                                                                                                                                                                                mutable_uri?: boolean | null;
                                                                                                                                                                                table_handle_v1?: string | null;
                                                                                                                                                                                token_standard: string;
                                                                                                                                                                                total_minted_v2?: any;
                                                                                                                                                                                uri: string;
                                                                                                                                                                            }
                                                                                                                                                                            | null;
                                                                                                                                                                            decimals?: any;
                                                                                                                                                                            description: string;
                                                                                                                                                                            is_fungible_v2?: boolean
                                                                                                                                                                            | null;
                                                                                                                                                                            largest_property_version_v1?: any;
                                                                                                                                                                            last_transaction_timestamp: any;
                                                                                                                                                                            last_transaction_version: any;
                                                                                                                                                                            maximum?: any;
                                                                                                                                                                            supply?: any;
                                                                                                                                                                            token_data_id: string;
                                                                                                                                                                            token_name: string;
                                                                                                                                                                            token_properties: any;
                                                                                                                                                                            token_standard: string;
                                                                                                                                                                            token_uri: string;
                                                                                                                                                                        }
                                                                                                                                                                        | null;
                                                                                                                                                                        is_fungible_v2?: boolean
                                                                                                                                                                        | null;
                                                                                                                                                                        is_soulbound_v2?: boolean | null;
                                                                                                                                                                        last_transaction_timestamp: any;
                                                                                                                                                                        last_transaction_version: any;
                                                                                                                                                                        owner_address: string;
                                                                                                                                                                        property_version_v1: any;
                                                                                                                                                                        storage_id: string;
                                                                                                                                                                        table_type_v1?: string | null;
                                                                                                                                                                        token_data_id: string;
                                                                                                                                                                        token_properties_mutated_v1?: any;
                                                                                                                                                                        token_standard: string;
                                                                                                                                                                    },
                                                                                                                                                                >;
                                                                                                                                                            }
                                                                                                                                                            • accountAddress: AccountAddressInput

                                                                                                                                                              The account address we want to get the tokens for.

                                                                                                                                                              +
                                                                                                                                                            • collectionAddress: AccountAddressInput

                                                                                                                                                              The address of the collection being queried.

                                                                                                                                                              +
                                                                                                                                                            • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                              Optional ledger version to sync up to, before querying.

                                                                                                                                                              +
                                                                                                                                                            • Optionaloptions?: TokenStandardArg & PaginationArgs & OrderByArg<
                                                                                                                                                                  {
                                                                                                                                                                      amount: any;
                                                                                                                                                                      current_token_data?: | {
                                                                                                                                                                          collection_id: string;
                                                                                                                                                                          current_collection?: | {
                                                                                                                                                                              collection_id: string;
                                                                                                                                                                              collection_name: string;
                                                                                                                                                                              creator_address: string;
                                                                                                                                                                              current_supply: any;
                                                                                                                                                                              description: string;
                                                                                                                                                                              last_transaction_timestamp: any;
                                                                                                                                                                              last_transaction_version: any;
                                                                                                                                                                              max_supply?: any;
                                                                                                                                                                              mutable_description?: boolean
                                                                                                                                                                              | null;
                                                                                                                                                                              mutable_uri?: boolean | null;
                                                                                                                                                                              table_handle_v1?: string | null;
                                                                                                                                                                              token_standard: string;
                                                                                                                                                                              total_minted_v2?: any;
                                                                                                                                                                              uri: string;
                                                                                                                                                                          }
                                                                                                                                                                          | null;
                                                                                                                                                                          decimals?: any;
                                                                                                                                                                          description: string;
                                                                                                                                                                          is_fungible_v2?: boolean
                                                                                                                                                                          | null;
                                                                                                                                                                          largest_property_version_v1?: any;
                                                                                                                                                                          last_transaction_timestamp: any;
                                                                                                                                                                          last_transaction_version: any;
                                                                                                                                                                          maximum?: any;
                                                                                                                                                                          supply?: any;
                                                                                                                                                                          token_data_id: string;
                                                                                                                                                                          token_name: string;
                                                                                                                                                                          token_properties: any;
                                                                                                                                                                          token_standard: string;
                                                                                                                                                                          token_uri: string;
                                                                                                                                                                      }
                                                                                                                                                                      | null;
                                                                                                                                                                      is_fungible_v2?: boolean
                                                                                                                                                                      | null;
                                                                                                                                                                      is_soulbound_v2?: boolean | null;
                                                                                                                                                                      last_transaction_timestamp: any;
                                                                                                                                                                      last_transaction_version: any;
                                                                                                                                                                      owner_address: string;
                                                                                                                                                                      property_version_v1: any;
                                                                                                                                                                      storage_id: string;
                                                                                                                                                                      table_type_v1?: string | null;
                                                                                                                                                                      token_data_id: string;
                                                                                                                                                                      token_properties_mutated_v1?: any;
                                                                                                                                                                      token_standard: string;
                                                                                                                                                                  },
                                                                                                                                                              >

                                                                                                                                                          Returns Promise<
                                                                                                                                                              {
                                                                                                                                                                  amount: any;
                                                                                                                                                                  current_token_data?: | {
                                                                                                                                                                      collection_id: string;
                                                                                                                                                                      current_collection?: | {
                                                                                                                                                                          collection_id: string;
                                                                                                                                                                          collection_name: string;
                                                                                                                                                                          creator_address: string;
                                                                                                                                                                          current_supply: any;
                                                                                                                                                                          description: string;
                                                                                                                                                                          last_transaction_timestamp: any;
                                                                                                                                                                          last_transaction_version: any;
                                                                                                                                                                          max_supply?: any;
                                                                                                                                                                          mutable_description?: boolean
                                                                                                                                                                          | null;
                                                                                                                                                                          mutable_uri?: boolean | null;
                                                                                                                                                                          table_handle_v1?: string | null;
                                                                                                                                                                          token_standard: string;
                                                                                                                                                                          total_minted_v2?: any;
                                                                                                                                                                          uri: string;
                                                                                                                                                                      }
                                                                                                                                                                      | null;
                                                                                                                                                                      decimals?: any;
                                                                                                                                                                      description: string;
                                                                                                                                                                      is_fungible_v2?: boolean
                                                                                                                                                                      | null;
                                                                                                                                                                      largest_property_version_v1?: any;
                                                                                                                                                                      last_transaction_timestamp: any;
                                                                                                                                                                      last_transaction_version: any;
                                                                                                                                                                      maximum?: any;
                                                                                                                                                                      supply?: any;
                                                                                                                                                                      token_data_id: string;
                                                                                                                                                                      token_name: string;
                                                                                                                                                                      token_properties: any;
                                                                                                                                                                      token_standard: string;
                                                                                                                                                                      token_uri: string;
                                                                                                                                                                  }
                                                                                                                                                                  | null;
                                                                                                                                                                  is_fungible_v2?: boolean
                                                                                                                                                                  | null;
                                                                                                                                                                  is_soulbound_v2?: boolean | null;
                                                                                                                                                                  last_transaction_timestamp: any;
                                                                                                                                                                  last_transaction_version: any;
                                                                                                                                                                  owner_address: string;
                                                                                                                                                                  property_version_v1: any;
                                                                                                                                                                  storage_id: string;
                                                                                                                                                                  table_type_v1?: string | null;
                                                                                                                                                                  token_data_id: string;
                                                                                                                                                                  token_properties_mutated_v1?: any;
                                                                                                                                                                  token_standard: string;
                                                                                                                                                              }[],
                                                                                                                                                          >

                                                                                                                                                          Tokens array with the token data.

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Get tokens owned by a specific account in a specific collection
                                                                                                                                                          const accountOwnedTokens = await aptos.getAccountOwnedTokensFromCollectionAddress({
                                                                                                                                                          accountAddress: "0x1", // replace with a real account address
                                                                                                                                                          collectionAddress: "0x2", // replace with a real collection address
                                                                                                                                                          });

                                                                                                                                                          console.log(accountOwnedTokens);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Queries a specific account resource given an account address and resource type.

                                                                                                                                                          +

                                                                                                                                                          Type Parameters

                                                                                                                                                          • T extends {} = any

                                                                                                                                                            The typed output of the resource.

                                                                                                                                                            +

                                                                                                                                                          Parameters

                                                                                                                                                          • args: {
                                                                                                                                                                accountAddress: AccountAddressInput;
                                                                                                                                                                options?: LedgerVersionArg;
                                                                                                                                                                resourceType: `${string}::${string}::${string}`;
                                                                                                                                                            }
                                                                                                                                                            • accountAddress: AccountAddressInput

                                                                                                                                                              The Aptos account address to query.

                                                                                                                                                              +
                                                                                                                                                            • Optionaloptions?: LedgerVersionArg
                                                                                                                                                            • resourceType: `${string}::${string}::${string}`

                                                                                                                                                              The string representation of an on-chain Move struct type, e.g., "0x1::aptos_coin::AptosCoin".

                                                                                                                                                              +

                                                                                                                                                          Returns Promise<T>

                                                                                                                                                          The account resource of the specified type.

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Get the account resource for a specific account address and resource type
                                                                                                                                                          const resource = await aptos.getAccountResource({
                                                                                                                                                          accountAddress: "0x1", // replace with a real account address
                                                                                                                                                          resourceType: "0x1::aptos_coin::AptosCoin"
                                                                                                                                                          });

                                                                                                                                                          console.log(resource);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Queries all account resources given an account address. +This function may call the API multiple times to auto paginate through results.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          Returns Promise<MoveResource[]>

                                                                                                                                                          Account resources.

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Fetching account resources for a specific account address
                                                                                                                                                          const resources = await aptos.getAccountResources({ accountAddress: "0x1" }); // replace with a real account address
                                                                                                                                                          console.log(resources);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Queries a page of account resources given an account address.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          Returns Promise<{ cursor: string | undefined; resources: MoveResource[] }>

                                                                                                                                                          Account resources.

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Fetching account resources for a specific account address
                                                                                                                                                          const resources = await aptos.getAccountResourcesPage({
                                                                                                                                                          accountAddress: "0x1", // replace with a real account address
                                                                                                                                                          options: {
                                                                                                                                                          cursor: undefined, // starting from the first resource
                                                                                                                                                          limit: 10, // limiting to 10 resources
                                                                                                                                                          },
                                                                                                                                                          });
                                                                                                                                                          console.log(resources);
                                                                                                                                                          console.log(`More to fetch: ${resources.cursor !== undefined}`);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Gets all account info (address, account public key, last transaction version) that have are associated with a public key and related public keys

                                                                                                                                                          +

                                                                                                                                                          For a given public key, it will query all multikeys that the public key is part of. Then for the provided public key and +any multikeys found in the previous step, it will query for any accounts that have an auth key that matches any of the +public keys.

                                                                                                                                                          +

                                                                                                                                                          Note: If an Ed25519PublicKey or an AnyPublicKey that wraps Ed25519PublicKey is passed in, it will query for both legacy and single singer cases.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          • args: {
                                                                                                                                                                minimumLedgerVersion?: AnyNumber;
                                                                                                                                                                options?: { includeUnverified?: boolean; noMultiKey?: boolean };
                                                                                                                                                                publicKey: BaseAccountPublicKey;
                                                                                                                                                            }

                                                                                                                                                            The arguments for getting accounts for a public key

                                                                                                                                                            +
                                                                                                                                                            • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                              The minimum ledger version to wait for before querying

                                                                                                                                                              +
                                                                                                                                                            • Optionaloptions?: { includeUnverified?: boolean; noMultiKey?: boolean }
                                                                                                                                                              • OptionalincludeUnverified?: boolean

                                                                                                                                                                Whether to include unverified accounts in the results. Unverified accounts +are accounts that can be authenticated with the signer, but there is no history of the signer using the account. Default +is false.

                                                                                                                                                                +
                                                                                                                                                              • OptionalnoMultiKey?: boolean

                                                                                                                                                                Whether to exclude multi-key accounts in the results. Default is false.

                                                                                                                                                                +
                                                                                                                                                            • publicKey: BaseAccountPublicKey

                                                                                                                                                              The public key to look up accounts for

                                                                                                                                                              +

                                                                                                                                                          Returns Promise<AccountInfo[]>

                                                                                                                                                          Promise resolving to an array of account addresses and their associated public keys

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network, Ed25519PrivateKey } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function getAccounts() {
                                                                                                                                                          const privateKey = Ed25519PrivateKey.generate();
                                                                                                                                                          const publicKey = privateKey.publicKey();
                                                                                                                                                          const accounts = await aptos.getAccountsForPublicKey({
                                                                                                                                                          publicKey
                                                                                                                                                          });
                                                                                                                                                          console.log(accounts);
                                                                                                                                                          } +
                                                                                                                                                          + +
                                                                                                                                                        • Queries the current count of tokens owned by a specified account.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          • args: { accountAddress: AccountAddressInput; minimumLedgerVersion?: AnyNumber }

                                                                                                                                                            The parameters for the query.

                                                                                                                                                            +
                                                                                                                                                            • accountAddress: AccountAddressInput

                                                                                                                                                              The account address to query the token count for.

                                                                                                                                                              +
                                                                                                                                                            • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                              Optional ledger version to sync up to before querying.

                                                                                                                                                              +

                                                                                                                                                          Returns Promise<number>

                                                                                                                                                          The current count of tokens owned by the account.

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Get the count of tokens owned by the account
                                                                                                                                                          const tokensCount = await aptos.getAccountTokensCount({ accountAddress: "0x1" }); // replace with a real account address
                                                                                                                                                          console.log(`Tokens Count: ${tokensCount}`);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Queries account transactions given an account address. +This function may call the API multiple times to auto paginate and retrieve all account transactions.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          Returns Promise<TransactionResponse[]>

                                                                                                                                                          The account transactions.

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Fetch transactions for a specific account
                                                                                                                                                          const transactions = await aptos.getAccountTransactions({
                                                                                                                                                          accountAddress: "0x1", // replace with a real account address
                                                                                                                                                          options: {
                                                                                                                                                          offset: 0, // starting from the first transaction
                                                                                                                                                          limit: 10, // limiting to 10 transactions
                                                                                                                                                          },
                                                                                                                                                          });

                                                                                                                                                          console.log(transactions);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Queries the current count of transactions submitted by an account.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          • args: { accountAddress: AccountAddressInput; minimumLedgerVersion?: AnyNumber }

                                                                                                                                                            The parameters for the query.

                                                                                                                                                            +
                                                                                                                                                            • accountAddress: AccountAddressInput

                                                                                                                                                              The account address we want to get the total count for.

                                                                                                                                                              +
                                                                                                                                                            • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                              Optional ledger version to sync up to before querying.

                                                                                                                                                              +

                                                                                                                                                          Returns Promise<number>

                                                                                                                                                          Current count of transactions made by an account.

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Get the count of transactions for a specific account
                                                                                                                                                          const accountTransactionsCount = await aptos.getAccountTransactionsCount({
                                                                                                                                                          accountAddress: "0x1", // replace with a real account address
                                                                                                                                                          minimumLedgerVersion: 1, // specify your own minimum ledger version if needed
                                                                                                                                                          });

                                                                                                                                                          console.log(accountTransactionsCount);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +
                                                                                                                                                        • Retrieves the balance for an account and asset.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          Returns Promise<number>

                                                                                                                                                          The balance as a number.

                                                                                                                                                          +
                                                                                                                                                          const aptos = new Aptos(new AptosConfig());
                                                                                                                                                          // APT coin by type
                                                                                                                                                          const apt = await aptos.getBalance({ accountAddress: "0x1", asset: "0x1::aptos_coin::AptosCoin" });
                                                                                                                                                          // Some FA by metadata address
                                                                                                                                                          const fa = await aptos.getBalance({ accountAddress: "0x1", asset: "0xa" }); +
                                                                                                                                                          + +
                                                                                                                                                        • Looks up the account address for a given authentication key, handling both rotated and non-rotated keys.

                                                                                                                                                          +

                                                                                                                                                          Parameters

                                                                                                                                                          Returns Promise<AccountAddress>

                                                                                                                                                          Promise - The account address associated with the authentication key.

                                                                                                                                                          +
                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                          async function runExample() {
                                                                                                                                                          // Look up the original account address for a given authentication key
                                                                                                                                                          const accountAddress = await aptos.lookupOriginalAccountAddress({
                                                                                                                                                          authenticationKey: "0x1", // replace with a real authentication key
                                                                                                                                                          });

                                                                                                                                                          console.log("Original Account Address:", accountAddress);
                                                                                                                                                          }
                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                          + +

                                                                                                                                                        Properties

                                                                                                                                                        abstraction: AccountAbstraction
                                                                                                                                                        config: AptosConfig

                                                                                                                                                        The configuration settings for the Aptos client.

                                                                                                                                                        +
                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.AccountAbstraction.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.AccountAbstraction.html new file mode 100644 index 000000000..5545b38e9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.AccountAbstraction.html @@ -0,0 +1,70 @@ +AccountAbstraction | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                          Preparing search index...

                                                                                                                                                          Class AccountAbstraction

                                                                                                                                                          Index

                                                                                                                                                          Constructors

                                                                                                                                                          Methods

                                                                                                                                                          • Adds a dispatchable authentication function to the account.

                                                                                                                                                            +

                                                                                                                                                            Parameters

                                                                                                                                                            Returns Promise<SimpleTransaction>

                                                                                                                                                            A transaction to add the authentication function to the account.

                                                                                                                                                            +
                                                                                                                                                            const txn = await aptos.abstraction.addAuthenticationFunctionTransaction({
                                                                                                                                                            accountAddress: alice.accountAddress,
                                                                                                                                                            authenticationFunction: `${alice.accountAddress}::any_authenticator::authenticate`,
                                                                                                                                                            });

                                                                                                                                                            const txn = await aptos.signAndSubmitTransaction({ signer: alice, transaction});
                                                                                                                                                            await aptos.waitForTransaction({ transactionHash: txn.hash }); +
                                                                                                                                                            + +
                                                                                                                                                          • Creates a transaction to disable account abstraction. If an authentication function is provided, it will specify to +remove the authentication function.

                                                                                                                                                            +

                                                                                                                                                            Parameters

                                                                                                                                                            Returns Promise<SimpleTransaction>

                                                                                                                                                            A transaction to disable account abstraction for the account.

                                                                                                                                                            +
                                                                                                                                                            const txn = await aptos.abstraction.disableAccountAbstractionTransaction({
                                                                                                                                                            accountAddress: alice.accountAddress,
                                                                                                                                                            authenticationFunction: `${alice.accountAddress}::any_authenticator::authenticate`,
                                                                                                                                                            });

                                                                                                                                                            const txn = await aptos.signAndSubmitTransaction({ signer: alice, transaction: txn });
                                                                                                                                                            await aptos.waitForTransaction({ transactionHash: txn.hash }); +
                                                                                                                                                            + +
                                                                                                                                                          • Gets the dispatchable authentication function for the account.

                                                                                                                                                            +

                                                                                                                                                            Parameters

                                                                                                                                                            Returns Promise<
                                                                                                                                                                | {
                                                                                                                                                                    functionName: string;
                                                                                                                                                                    moduleAddress: AccountAddress;
                                                                                                                                                                    moduleName: string;
                                                                                                                                                                }[]
                                                                                                                                                                | undefined,
                                                                                                                                                            >

                                                                                                                                                            The dispatchable authentication function for the account.

                                                                                                                                                            +
                                                                                                                                                            const functionInfos = await aptos.abstraction.getAuthenticationFunction({
                                                                                                                                                            accountAddress: alice.accountAddress,
                                                                                                                                                            });

                                                                                                                                                            if (functionInfos) {
                                                                                                                                                            console.log(`Account ${alice.accountAddress.toString()} is using account abstraction!`);
                                                                                                                                                            } else {
                                                                                                                                                            console.log(`Account ${alice.accountAddress.toString()} is not using account abstraction.`);
                                                                                                                                                            } +
                                                                                                                                                            + +
                                                                                                                                                          • Will return true if the account is abstracted, otherwise false.

                                                                                                                                                            +

                                                                                                                                                            Parameters

                                                                                                                                                            Returns Promise<boolean>

                                                                                                                                                            Whether the account is abstracted.

                                                                                                                                                            +
                                                                                                                                                            const isAccountAbstractionEnabled = await aptos.abstraction.isAccountAbstractionEnabled({
                                                                                                                                                            accountAddress: alice.accountAddress,
                                                                                                                                                            authenticationFunction: `${alice.accountAddress}::any_authenticator::authenticate`,
                                                                                                                                                            });
                                                                                                                                                            if (isAccountAbstractionEnabled) {
                                                                                                                                                            console.log(`Account ${alice.accountAddress.toString()} is using account abstraction!`);
                                                                                                                                                            } else {
                                                                                                                                                            console.log(`Account ${alice.accountAddress.toString()} is not using account abstraction.`);
                                                                                                                                                            } +
                                                                                                                                                            + +
                                                                                                                                                          • Removes a dispatchable authentication function from the account.

                                                                                                                                                            +

                                                                                                                                                            Parameters

                                                                                                                                                            Returns Promise<SimpleTransaction>

                                                                                                                                                            A transaction to remove the authentication function from the account.

                                                                                                                                                            +
                                                                                                                                                            const txn = await aptos.abstraction.removeAuthenticationFunctionTransaction({
                                                                                                                                                            accountAddress: alice.accountAddress,
                                                                                                                                                            authenticationFunction: `${alice.accountAddress}::any_authenticator::authenticate`,
                                                                                                                                                            });

                                                                                                                                                            const txn = await aptos.signAndSubmitTransaction({ signer: alice, transaction: txn });
                                                                                                                                                            await aptos.waitForTransaction({ transactionHash: txn.hash }); +
                                                                                                                                                            + +

                                                                                                                                                          Properties

                                                                                                                                                          config: AptosConfig
                                                                                                                                                          enableAccountAbstractionTransaction: (
                                                                                                                                                              args: {
                                                                                                                                                                  accountAddress: AccountAddressInput;
                                                                                                                                                                  authenticationFunction: string;
                                                                                                                                                                  options?: InputGenerateTransactionOptions;
                                                                                                                                                              },
                                                                                                                                                          ) => Promise<SimpleTransaction> = ...

                                                                                                                                                          Creates a transaction to enable account abstraction with the given authentication function.

                                                                                                                                                          +

                                                                                                                                                          Type Declaration

                                                                                                                                                            • (
                                                                                                                                                                  args: {
                                                                                                                                                                      accountAddress: AccountAddressInput;
                                                                                                                                                                      authenticationFunction: string;
                                                                                                                                                                      options?: InputGenerateTransactionOptions;
                                                                                                                                                                  },
                                                                                                                                                              ): Promise<SimpleTransaction>
                                                                                                                                                            • Adds a dispatchable authentication function to the account.

                                                                                                                                                              +

                                                                                                                                                              Parameters

                                                                                                                                                              Returns Promise<SimpleTransaction>

                                                                                                                                                              A transaction to add the authentication function to the account.

                                                                                                                                                              +
                                                                                                                                                              const txn = await aptos.abstraction.addAuthenticationFunctionTransaction({
                                                                                                                                                              accountAddress: alice.accountAddress,
                                                                                                                                                              authenticationFunction: `${alice.accountAddress}::any_authenticator::authenticate`,
                                                                                                                                                              });

                                                                                                                                                              const txn = await aptos.signAndSubmitTransaction({ signer: alice, transaction});
                                                                                                                                                              await aptos.waitForTransaction({ transactionHash: txn.hash }); +
                                                                                                                                                              + +
                                                                                                                                                          const txn = await aptos.abstraction.enableAccountAbstractionTransaction({
                                                                                                                                                          accountAddress: alice.accountAddress,
                                                                                                                                                          authenticationFunction: `{alice.accountAddress}::any_authenticator::authenticate`,
                                                                                                                                                          });

                                                                                                                                                          const txn = await aptos.signAndSubmitTransaction({ signer: alice, transaction: txn });
                                                                                                                                                          await aptos.waitForTransaction({ transactionHash: txn.hash }); +
                                                                                                                                                          + +

                                                                                                                                                          The account to enable account abstraction for.

                                                                                                                                                          +

                                                                                                                                                          The authentication function info to use.

                                                                                                                                                          +

                                                                                                                                                          The options for the transaction.

                                                                                                                                                          +

                                                                                                                                                          A transaction to enable account abstraction for the account.

                                                                                                                                                          +
                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.AptosObject.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.AptosObject.html new file mode 100644 index 000000000..88b342689 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.AptosObject.html @@ -0,0 +1,20 @@ +AptosObject | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                            Preparing search index...

                                                                                                                                                            Class AptosObject

                                                                                                                                                            A class to query all Object related queries on Aptos.

                                                                                                                                                            +

                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                            Index

                                                                                                                                                            Object

                                                                                                                                                            • Creates an instance of the Aptos client with the provided configuration. +This allows interaction with the Aptos blockchain using the specified settings.

                                                                                                                                                              +

                                                                                                                                                              Parameters

                                                                                                                                                              • config: AptosConfig

                                                                                                                                                                The configuration settings for the Aptos client.

                                                                                                                                                                +

                                                                                                                                                              Returns AptosObject

                                                                                                                                                              import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                              async function runExample() {
                                                                                                                                                              // Create a configuration for the Aptos client
                                                                                                                                                              const config = new AptosConfig({
                                                                                                                                                              network: Network.TESTNET, // Specify the desired network
                                                                                                                                                              nodeUrl: "https://testnet.aptos.dev", // Replace with your node URL
                                                                                                                                                              });

                                                                                                                                                              // Create an instance of the Aptos client
                                                                                                                                                              const aptos = new Aptos(config);

                                                                                                                                                              console.log("Aptos client created successfully", aptos);
                                                                                                                                                              }
                                                                                                                                                              runExample().catch(console.error); +
                                                                                                                                                              + +
                                                                                                                                                            • Fetches the object data based on the specified object address.

                                                                                                                                                              +

                                                                                                                                                              Parameters

                                                                                                                                                              • args: {
                                                                                                                                                                    minimumLedgerVersion?: AnyNumber;
                                                                                                                                                                    objectAddress: AccountAddressInput;
                                                                                                                                                                    options?: PaginationArgs & OrderByArg<
                                                                                                                                                                        {
                                                                                                                                                                            allow_ungated_transfer: boolean;
                                                                                                                                                                            is_deleted: boolean;
                                                                                                                                                                            last_guid_creation_num: any;
                                                                                                                                                                            last_transaction_version: any;
                                                                                                                                                                            object_address: string;
                                                                                                                                                                            owner_address: string;
                                                                                                                                                                            state_key_hash: string;
                                                                                                                                                                        },
                                                                                                                                                                    >;
                                                                                                                                                                }
                                                                                                                                                                • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                                  Optional minimum ledger version to wait for.

                                                                                                                                                                  +
                                                                                                                                                                • objectAddress: AccountAddressInput

                                                                                                                                                                  The object address to retrieve data for.

                                                                                                                                                                  +
                                                                                                                                                                • Optionaloptions?: PaginationArgs & OrderByArg<
                                                                                                                                                                      {
                                                                                                                                                                          allow_ungated_transfer: boolean;
                                                                                                                                                                          is_deleted: boolean;
                                                                                                                                                                          last_guid_creation_num: any;
                                                                                                                                                                          last_transaction_version: any;
                                                                                                                                                                          object_address: string;
                                                                                                                                                                          owner_address: string;
                                                                                                                                                                          state_key_hash: string;
                                                                                                                                                                      },
                                                                                                                                                                  >

                                                                                                                                                                  Optional configuration options for pagination and ordering.

                                                                                                                                                                  +

                                                                                                                                                              Returns Promise<
                                                                                                                                                                  {
                                                                                                                                                                      allow_ungated_transfer: boolean;
                                                                                                                                                                      is_deleted: boolean;
                                                                                                                                                                      last_guid_creation_num: any;
                                                                                                                                                                      last_transaction_version: any;
                                                                                                                                                                      object_address: string;
                                                                                                                                                                      owner_address: string;
                                                                                                                                                                      state_key_hash: string;
                                                                                                                                                                  },
                                                                                                                                                              >

                                                                                                                                                              The object data corresponding to the provided address.

                                                                                                                                                              +
                                                                                                                                                              import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                              const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                              const aptos = new Aptos(config);

                                                                                                                                                              async function runExample() {
                                                                                                                                                              // Fetching object data by object address
                                                                                                                                                              const objectData = await aptos.getObjectDataByObjectAddress({
                                                                                                                                                              objectAddress: "0x1", // replace with a real object address
                                                                                                                                                              });

                                                                                                                                                              console.log(objectData);
                                                                                                                                                              }
                                                                                                                                                              runExample().catch(console.error); +
                                                                                                                                                              + +

                                                                                                                                                            Properties

                                                                                                                                                            config: AptosConfig

                                                                                                                                                            The configuration settings for the Aptos client.

                                                                                                                                                            +
                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.AsyncQueue.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.AsyncQueue.html new file mode 100644 index 000000000..1506c6fb0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.AsyncQueue.html @@ -0,0 +1,23 @@ +AsyncQueue | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                              Preparing search index...

                                                                                                                                                              Class AsyncQueue<T>

                                                                                                                                                              Type Parameters

                                                                                                                                                              • T
                                                                                                                                                              Index

                                                                                                                                                              Implementation - Transactions

                                                                                                                                                              Constructors

                                                                                                                                                              Properties

                                                                                                                                                              Implementation - Transactions

                                                                                                                                                              • Cancels all pending promises in the queue and rejects them with an AsyncQueueCancelledError. +This ensures that any awaiting code can handle the cancellation appropriately.

                                                                                                                                                                +

                                                                                                                                                                Returns void

                                                                                                                                                              • Dequeues the next item from the queue and returns a promise that resolves to it. +If the queue is empty, it creates a new promise that will be resolved when an item is enqueued.

                                                                                                                                                                +

                                                                                                                                                                Returns Promise<T>

                                                                                                                                                                Promise

                                                                                                                                                                +
                                                                                                                                                              • Adds an item to the queue. If there are pending dequeued promises, it resolves the oldest promise with the enqueued item +immediately; otherwise, it adds the item to the queue.

                                                                                                                                                                +

                                                                                                                                                                Parameters

                                                                                                                                                                • item: T

                                                                                                                                                                  The item to be added to the queue.

                                                                                                                                                                  +

                                                                                                                                                                Returns void

                                                                                                                                                              Constructors

                                                                                                                                                              Properties

                                                                                                                                                              queue: T[] = []
                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.AsyncQueueCancelledError.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.AsyncQueueCancelledError.html new file mode 100644 index 000000000..4d19e885a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.AsyncQueueCancelledError.html @@ -0,0 +1,35 @@ +AsyncQueueCancelledError | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                Preparing search index...

                                                                                                                                                                Class AsyncQueueCancelledError

                                                                                                                                                                Represents an error that occurs when an asynchronous queue operation is cancelled. +This error extends the built-in Error class to provide additional context for cancellation events.

                                                                                                                                                                +

                                                                                                                                                                Hierarchy

                                                                                                                                                                • Error
                                                                                                                                                                  • AsyncQueueCancelledError
                                                                                                                                                                Index

                                                                                                                                                                Constructors

                                                                                                                                                                Methods

                                                                                                                                                                • Creates a .stack property on targetObject, which when accessed returns +a string representing the location in the code at which +Error.captureStackTrace() was called.

                                                                                                                                                                  +
                                                                                                                                                                  const myObject = {};
                                                                                                                                                                  Error.captureStackTrace(myObject);
                                                                                                                                                                  myObject.stack; // Similar to `new Error().stack` +
                                                                                                                                                                  + +

                                                                                                                                                                  The first line of the trace will be prefixed with +${myObject.name}: ${myObject.message}.

                                                                                                                                                                  +

                                                                                                                                                                  The optional constructorOpt argument accepts a function. If given, all frames +above constructorOpt, including constructorOpt, will be omitted from the +generated stack trace.

                                                                                                                                                                  +

                                                                                                                                                                  The constructorOpt argument is useful for hiding implementation +details of error generation from the user. For instance:

                                                                                                                                                                  +
                                                                                                                                                                  function a() {
                                                                                                                                                                  b();
                                                                                                                                                                  }

                                                                                                                                                                  function b() {
                                                                                                                                                                  c();
                                                                                                                                                                  }

                                                                                                                                                                  function c() {
                                                                                                                                                                  // Create an error without stack trace to avoid calculating the stack trace twice.
                                                                                                                                                                  const { stackTraceLimit } = Error;
                                                                                                                                                                  Error.stackTraceLimit = 0;
                                                                                                                                                                  const error = new Error();
                                                                                                                                                                  Error.stackTraceLimit = stackTraceLimit;

                                                                                                                                                                  // Capture the stack trace above function b
                                                                                                                                                                  Error.captureStackTrace(error, b); // Neither function c, nor b is included in the stack trace
                                                                                                                                                                  throw error;
                                                                                                                                                                  }

                                                                                                                                                                  a(); +
                                                                                                                                                                  + +

                                                                                                                                                                  Parameters

                                                                                                                                                                  • targetObject: object
                                                                                                                                                                  • OptionalconstructorOpt: Function

                                                                                                                                                                  Returns void

                                                                                                                                                                Properties

                                                                                                                                                                cause?: unknown
                                                                                                                                                                message: string
                                                                                                                                                                name: string
                                                                                                                                                                stack?: string
                                                                                                                                                                stackTraceLimit: number

                                                                                                                                                                The Error.stackTraceLimit property specifies the number of stack frames +collected by a stack trace (whether generated by new Error().stack or +Error.captureStackTrace(obj)).

                                                                                                                                                                +

                                                                                                                                                                The default value is 10 but may be set to any valid JavaScript number. Changes +will affect any stack trace captured after the value has been changed.

                                                                                                                                                                +

                                                                                                                                                                If set to a non-number value, or set to a negative number, stack traces will +not capture any frames.

                                                                                                                                                                +
                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Build.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Build.html new file mode 100644 index 000000000..cf97c72b2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Build.html @@ -0,0 +1,33 @@ +Build | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                  Preparing search index...

                                                                                                                                                                  Class Build

                                                                                                                                                                  A class to handle all Build transaction operations.

                                                                                                                                                                  +
                                                                                                                                                                  Index

                                                                                                                                                                  Implementation

                                                                                                                                                                  Properties

                                                                                                                                                                  Implementation

                                                                                                                                                                  • Initializes a new instance of the Aptos client with the specified configuration. +This allows you to interact with the Aptos blockchain using the provided settings.

                                                                                                                                                                    +

                                                                                                                                                                    Parameters

                                                                                                                                                                    • config: AptosConfig

                                                                                                                                                                      The configuration settings for the Aptos client.

                                                                                                                                                                      +

                                                                                                                                                                    Returns Build

                                                                                                                                                                    import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                    async function runExample() {
                                                                                                                                                                    // Create a configuration for the Aptos client
                                                                                                                                                                    const config = new AptosConfig({
                                                                                                                                                                    network: Network.TESTNET, // specify the network
                                                                                                                                                                    nodeUrl: "https://testnet.aptos.dev", // specify the node URL
                                                                                                                                                                    });

                                                                                                                                                                    // Initialize the Aptos client
                                                                                                                                                                    const aptos = new Aptos(config);

                                                                                                                                                                    console.log("Aptos client initialized:", aptos);
                                                                                                                                                                    }
                                                                                                                                                                    runExample().catch(console.error); +
                                                                                                                                                                    + +
                                                                                                                                                                  • Build a multi-agent transaction that allows multiple signers to authorize a transaction.

                                                                                                                                                                    +

                                                                                                                                                                    Parameters

                                                                                                                                                                    Returns Promise<MultiAgentTransaction>

                                                                                                                                                                    MultiAgentTransaction

                                                                                                                                                                    +
                                                                                                                                                                    import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                    const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                    const aptos = new Aptos(config);

                                                                                                                                                                    async function runExample() {
                                                                                                                                                                    // Build a multi-agent transaction
                                                                                                                                                                    const transaction = await aptos.multiAgent({
                                                                                                                                                                    sender: "0x1", // replace with a real sender account address
                                                                                                                                                                    data: {
                                                                                                                                                                    // Transaction data structure
                                                                                                                                                                    function: "0x1::aptos_account::transfer",
                                                                                                                                                                    functionArguments: ["0x2", 100], // replace with a real destination account address and amount
                                                                                                                                                                    },
                                                                                                                                                                    secondarySignerAddresses: ["0x3", "0x4"], // replace with real secondary signer addresses
                                                                                                                                                                    options: {
                                                                                                                                                                    // Optional transaction configurations
                                                                                                                                                                    maxGasAmount: "1000",
                                                                                                                                                                    gasUnitPrice: "1",
                                                                                                                                                                    },
                                                                                                                                                                    });

                                                                                                                                                                    console.log(transaction);
                                                                                                                                                                    }
                                                                                                                                                                    runExample().catch(console.error); +
                                                                                                                                                                    + +

                                                                                                                                                                  Properties

                                                                                                                                                                  config: AptosConfig
                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Coin.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Coin.html new file mode 100644 index 000000000..4c734dfd1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Coin.html @@ -0,0 +1,25 @@ +Coin | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                    Preparing search index...

                                                                                                                                                                    Class Coin

                                                                                                                                                                    A class to handle all Coin operations.

                                                                                                                                                                    +

                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                    Index

                                                                                                                                                                    Coin

                                                                                                                                                                    • Initializes a new instance of the Aptos client with the specified configuration. +This allows you to interact with the Aptos blockchain using the provided settings.

                                                                                                                                                                      +

                                                                                                                                                                      Parameters

                                                                                                                                                                      • config: AptosConfig

                                                                                                                                                                        The configuration settings for the Aptos client.

                                                                                                                                                                        +

                                                                                                                                                                      Returns Coin

                                                                                                                                                                      import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                      async function runExample() {
                                                                                                                                                                      // Create a new Aptos client with testnet configuration
                                                                                                                                                                      const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                      const aptos = new Aptos(config);

                                                                                                                                                                      console.log("Aptos client initialized:", aptos);
                                                                                                                                                                      }
                                                                                                                                                                      runExample().catch(console.error); +
                                                                                                                                                                      + +
                                                                                                                                                                    • Generate a transfer coin transaction that can be simulated, signed, and submitted. +This function helps you create a transaction to transfer a specified amount of coins +from one account to another within the Aptos network.

                                                                                                                                                                      +

                                                                                                                                                                      Parameters

                                                                                                                                                                      Returns Promise<SimpleTransaction>

                                                                                                                                                                      SimpleTransaction

                                                                                                                                                                      +
                                                                                                                                                                      import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                      const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                      const aptos = new Aptos(config);

                                                                                                                                                                      async function runExample() {
                                                                                                                                                                      // Generate a transfer coin transaction
                                                                                                                                                                      const transaction = await aptos.transferCoinTransaction({
                                                                                                                                                                      sender: "0x1", // replace with a real sender account address
                                                                                                                                                                      recipient: "0x2", // replace with a real recipient account address
                                                                                                                                                                      amount: 10,
                                                                                                                                                                      });

                                                                                                                                                                      console.log(transaction);
                                                                                                                                                                      }
                                                                                                                                                                      runExample().catch(console.error); +
                                                                                                                                                                      + +

                                                                                                                                                                    Properties

                                                                                                                                                                    config: AptosConfig

                                                                                                                                                                    The configuration settings for the Aptos client.

                                                                                                                                                                    +
                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.DigitalAsset.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.DigitalAsset.html new file mode 100644 index 000000000..d21973c89 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.DigitalAsset.html @@ -0,0 +1,308 @@ +DigitalAsset | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                      Preparing search index...

                                                                                                                                                                      Class DigitalAsset

                                                                                                                                                                      A class to query all DigitalAsset related queries on Aptos.

                                                                                                                                                                      +

                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                      Index

                                                                                                                                                                      DigitalAsset

                                                                                                                                                                      • Initializes a new instance of the Aptos client with the specified configuration. +This allows you to interact with the Aptos blockchain using the provided settings.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • config: AptosConfig

                                                                                                                                                                          The configuration settings for the Aptos client.

                                                                                                                                                                          +

                                                                                                                                                                        Returns DigitalAsset

                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Create a configuration for the Aptos client
                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET }); // Specify your desired network

                                                                                                                                                                        // Initialize the Aptos client with the configuration
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        console.log("Aptos client initialized:", aptos);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Add a digital asset property to the blockchain. +This function allows you to specify a new property for a digital asset, including its key, type, and value.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: {
                                                                                                                                                                              creator: Account;
                                                                                                                                                                              digitalAssetAddress: AccountAddressInput;
                                                                                                                                                                              digitalAssetType?: `${string}::${string}::${string}`;
                                                                                                                                                                              options?: InputGenerateTransactionOptions;
                                                                                                                                                                              propertyKey: string;
                                                                                                                                                                              propertyType:
                                                                                                                                                                                  | "BOOLEAN"
                                                                                                                                                                                  | "U8"
                                                                                                                                                                                  | "U16"
                                                                                                                                                                                  | "U32"
                                                                                                                                                                                  | "U64"
                                                                                                                                                                                  | "U128"
                                                                                                                                                                                  | "U256"
                                                                                                                                                                                  | "ADDRESS"
                                                                                                                                                                                  | "STRING"
                                                                                                                                                                                  | "ARRAY";
                                                                                                                                                                              propertyValue: PropertyValue;
                                                                                                                                                                          }

                                                                                                                                                                          The arguments for adding a digital asset property.

                                                                                                                                                                          +
                                                                                                                                                                          • creator: Account

                                                                                                                                                                            The account that mints the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • digitalAssetAddress: AccountAddressInput

                                                                                                                                                                            The digital asset address.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                                                                                                                                            (Optional) The type of the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • Optionaloptions?: InputGenerateTransactionOptions

                                                                                                                                                                            (Optional) Options for generating the transaction.

                                                                                                                                                                            +
                                                                                                                                                                          • propertyKey: string

                                                                                                                                                                            The property key for storing on-chain properties.

                                                                                                                                                                            +
                                                                                                                                                                          • propertyType:
                                                                                                                                                                                | "BOOLEAN"
                                                                                                                                                                                | "U8"
                                                                                                                                                                                | "U16"
                                                                                                                                                                                | "U32"
                                                                                                                                                                                | "U64"
                                                                                                                                                                                | "U128"
                                                                                                                                                                                | "U256"
                                                                                                                                                                                | "ADDRESS"
                                                                                                                                                                                | "STRING"
                                                                                                                                                                                | "ARRAY"

                                                                                                                                                                            The type of property value.

                                                                                                                                                                            +
                                                                                                                                                                          • propertyValue: PropertyValue

                                                                                                                                                                            The property value to be stored on-chain.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<SimpleTransaction>

                                                                                                                                                                        A SimpleTransaction that can be simulated or submitted to the chain.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Add a digital asset property
                                                                                                                                                                        const transaction = await aptos.addDigitalAssetPropertyTransaction({
                                                                                                                                                                        creator: Account.generate(), // Replace with a real account
                                                                                                                                                                        propertyKey: "newKey",
                                                                                                                                                                        propertyType: "BOOLEAN",
                                                                                                                                                                        propertyValue: true,
                                                                                                                                                                        digitalAssetAddress: "0x123", // Replace with a real digital asset address
                                                                                                                                                                        });

                                                                                                                                                                        console.log(transaction);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Add a typed digital asset property to the blockchain. +This function allows you to define and store a specific property for a digital asset, enabling better categorization and +management of digital assets.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: {
                                                                                                                                                                              creator: Account;
                                                                                                                                                                              digitalAssetAddress: AccountAddressInput;
                                                                                                                                                                              digitalAssetType?: `${string}::${string}::${string}`;
                                                                                                                                                                              options?: InputGenerateTransactionOptions;
                                                                                                                                                                              propertyKey: string;
                                                                                                                                                                              propertyType:
                                                                                                                                                                                  | "BOOLEAN"
                                                                                                                                                                                  | "U8"
                                                                                                                                                                                  | "U16"
                                                                                                                                                                                  | "U32"
                                                                                                                                                                                  | "U64"
                                                                                                                                                                                  | "U128"
                                                                                                                                                                                  | "U256"
                                                                                                                                                                                  | "ADDRESS"
                                                                                                                                                                                  | "STRING"
                                                                                                                                                                                  | "ARRAY";
                                                                                                                                                                              propertyValue: PropertyValue;
                                                                                                                                                                          }

                                                                                                                                                                          The parameters for adding the typed property.

                                                                                                                                                                          +
                                                                                                                                                                          • creator: Account

                                                                                                                                                                            The account that mints the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • digitalAssetAddress: AccountAddressInput

                                                                                                                                                                            The digital asset address.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                                                                                                                                            The optional type of the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • Optionaloptions?: InputGenerateTransactionOptions

                                                                                                                                                                            Optional transaction generation options.

                                                                                                                                                                            +
                                                                                                                                                                          • propertyKey: string

                                                                                                                                                                            The property key for storing on-chain properties.

                                                                                                                                                                            +
                                                                                                                                                                          • propertyType:
                                                                                                                                                                                | "BOOLEAN"
                                                                                                                                                                                | "U8"
                                                                                                                                                                                | "U16"
                                                                                                                                                                                | "U32"
                                                                                                                                                                                | "U64"
                                                                                                                                                                                | "U128"
                                                                                                                                                                                | "U256"
                                                                                                                                                                                | "ADDRESS"
                                                                                                                                                                                | "STRING"
                                                                                                                                                                                | "ARRAY"

                                                                                                                                                                            The type of property value.

                                                                                                                                                                            +
                                                                                                                                                                          • propertyValue: PropertyValue

                                                                                                                                                                            The property value to be stored on-chain.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<SimpleTransaction>

                                                                                                                                                                        A SimpleTransaction that can be simulated or submitted to the chain.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Adding a typed digital asset property
                                                                                                                                                                        const transaction = await aptos.addDigitalAssetTypedPropertyTransaction({
                                                                                                                                                                        creator: Account.generate(), // replace with a real account
                                                                                                                                                                        propertyKey: "typedKey",
                                                                                                                                                                        propertyType: "STRING",
                                                                                                                                                                        propertyValue: "hello",
                                                                                                                                                                        digitalAssetAddress: "0x123", // replace with a real digital asset address
                                                                                                                                                                        });

                                                                                                                                                                        console.log(transaction);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Burn a digital asset by its creator, allowing for the removal of a specified digital asset from the blockchain.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: {
                                                                                                                                                                              creator: Account;
                                                                                                                                                                              digitalAssetAddress: AccountAddressInput;
                                                                                                                                                                              digitalAssetType?: `${string}::${string}::${string}`;
                                                                                                                                                                              options?: InputGenerateTransactionOptions;
                                                                                                                                                                          }

                                                                                                                                                                          The arguments for burning the digital asset.

                                                                                                                                                                          +
                                                                                                                                                                          • creator: Account

                                                                                                                                                                            The creator account that is burning the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • digitalAssetAddress: AccountAddressInput

                                                                                                                                                                            The address of the digital asset to be burned.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                                                                                                                                            Optional. The type of the digital asset being burned.

                                                                                                                                                                            +
                                                                                                                                                                          • Optionaloptions?: InputGenerateTransactionOptions

                                                                                                                                                                            Optional. Additional options for generating the transaction.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<SimpleTransaction>

                                                                                                                                                                        A SimpleTransaction that can be simulated or submitted to the chain.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network, Account } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        const creator = Account.generate(); // Replace with a real creator account
                                                                                                                                                                        const transaction = await aptos.burnDigitalAssetTransaction({
                                                                                                                                                                        creator: creator,
                                                                                                                                                                        digitalAssetAddress: "0x123", // Replace with a real digital asset address
                                                                                                                                                                        });

                                                                                                                                                                        console.log(transaction);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Creates a new collection within the specified account.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: {
                                                                                                                                                                              creator: Account;
                                                                                                                                                                              description: string;
                                                                                                                                                                              name: string;
                                                                                                                                                                              options?: InputGenerateTransactionOptions;
                                                                                                                                                                              uri: string;
                                                                                                                                                                          } & CreateCollectionOptions
                                                                                                                                                                          • creator: Account

                                                                                                                                                                            The account of the collection's creator.

                                                                                                                                                                            +
                                                                                                                                                                          • description: string

                                                                                                                                                                            The description of the collection.

                                                                                                                                                                            +
                                                                                                                                                                          • name: string

                                                                                                                                                                            The name of the collection.

                                                                                                                                                                            +
                                                                                                                                                                          • Optionaloptions?: InputGenerateTransactionOptions

                                                                                                                                                                            Optional parameters for generating the transaction.

                                                                                                                                                                            +

                                                                                                                                                                            The parameters below are optional:

                                                                                                                                                                            +
                                                                                                                                                                          • uri: string

                                                                                                                                                                            The URI to additional info about the collection.

                                                                                                                                                                            +

                                                                                                                                                                          Options for creating a collection, allowing customization of various attributes such as supply limits, mutability of metadata, +and royalty settings.

                                                                                                                                                                          +
                                                                                                                                                                          • OptionalmaxSupply?: AnyNumber
                                                                                                                                                                          • OptionalmutableDescription?: boolean
                                                                                                                                                                          • OptionalmutableRoyalty?: boolean
                                                                                                                                                                          • OptionalmutableTokenDescription?: boolean
                                                                                                                                                                          • OptionalmutableTokenName?: boolean
                                                                                                                                                                          • OptionalmutableTokenProperties?: boolean
                                                                                                                                                                          • OptionalmutableTokenURI?: boolean
                                                                                                                                                                          • OptionalmutableURI?: boolean
                                                                                                                                                                          • OptionalroyaltyDenominator?: number
                                                                                                                                                                          • OptionalroyaltyNumerator?: number
                                                                                                                                                                          • OptionaltokensBurnableByCreator?: boolean
                                                                                                                                                                          • OptionaltokensFreezableByCreator?: boolean

                                                                                                                                                                        Returns Promise<SimpleTransaction>

                                                                                                                                                                        A SimpleTransaction that when submitted will create the collection.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Creating a new collection transaction
                                                                                                                                                                        const transaction = await aptos.createCollectionTransaction({
                                                                                                                                                                        creator: Account.generate(), // Replace with a real account
                                                                                                                                                                        description: "A unique collection of digital assets.",
                                                                                                                                                                        name: "My Digital Collection",
                                                                                                                                                                        uri: "https://mycollection.com",
                                                                                                                                                                        });

                                                                                                                                                                        console.log("Transaction created:", transaction);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Freeze the ability to transfer a specified digital asset. +This function allows the creator to restrict the transfer capability of a digital asset.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: {
                                                                                                                                                                              creator: Account;
                                                                                                                                                                              digitalAssetAddress: AccountAddressInput;
                                                                                                                                                                              digitalAssetType?: `${string}::${string}::${string}`;
                                                                                                                                                                              options?: InputGenerateTransactionOptions;
                                                                                                                                                                          }

                                                                                                                                                                          The arguments for freezing the digital asset transfer.

                                                                                                                                                                          +
                                                                                                                                                                          • creator: Account

                                                                                                                                                                            The creator account initiating the freeze.

                                                                                                                                                                            +
                                                                                                                                                                          • digitalAssetAddress: AccountAddressInput

                                                                                                                                                                            The address of the digital asset to be frozen.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                                                                                                                                            Optional. The type of the digital asset being frozen.

                                                                                                                                                                            +
                                                                                                                                                                          • Optionaloptions?: InputGenerateTransactionOptions

                                                                                                                                                                            Optional. Additional options for generating the transaction.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<SimpleTransaction>

                                                                                                                                                                        A SimpleTransaction that can be simulated or submitted to the chain.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Freeze the digital asset transfer
                                                                                                                                                                        const transaction = await aptos.freezeDigitalAssetTransaferTransaction({
                                                                                                                                                                        creator: Account.generate(), // Replace with a real account if needed
                                                                                                                                                                        digitalAssetAddress: "0x123", // Replace with a real digital asset address
                                                                                                                                                                        });

                                                                                                                                                                        console.log(transaction);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Queries data of a specific collection by the collection creator address and the collection name. +This function is deprecated; use getCollectionDataByCreatorAddressAndCollectionName instead.

                                                                                                                                                                        +

                                                                                                                                                                        If a creator account has two collections with the same name in v1 and v2, you can pass an optional tokenStandard parameter +to query a specific standard.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: {
                                                                                                                                                                              collectionName: string;
                                                                                                                                                                              creatorAddress: AccountAddressInput;
                                                                                                                                                                              minimumLedgerVersion?: AnyNumber;
                                                                                                                                                                              options?: TokenStandardArg;
                                                                                                                                                                          }

                                                                                                                                                                          The arguments for querying the collection data.

                                                                                                                                                                          +
                                                                                                                                                                          • collectionName: string

                                                                                                                                                                            The name of the collection.

                                                                                                                                                                            +
                                                                                                                                                                          • creatorAddress: AccountAddressInput

                                                                                                                                                                            The address of the collection's creator.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                                            Optional ledger version to sync up to before querying.

                                                                                                                                                                            +
                                                                                                                                                                          • Optionaloptions?: TokenStandardArg

                                                                                                                                                                            Optional parameters for the query.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<
                                                                                                                                                                            {
                                                                                                                                                                                collection_id: string;
                                                                                                                                                                                collection_name: string;
                                                                                                                                                                                creator_address: string;
                                                                                                                                                                                current_supply: any;
                                                                                                                                                                                description: string;
                                                                                                                                                                                last_transaction_timestamp: any;
                                                                                                                                                                                last_transaction_version: any;
                                                                                                                                                                                max_supply?: any;
                                                                                                                                                                                mutable_description?: boolean
                                                                                                                                                                                | null;
                                                                                                                                                                                mutable_uri?: boolean | null;
                                                                                                                                                                                table_handle_v1?: string | null;
                                                                                                                                                                                token_standard: string;
                                                                                                                                                                                total_minted_v2?: any;
                                                                                                                                                                                uri: string;
                                                                                                                                                                            },
                                                                                                                                                                        >

                                                                                                                                                                        GetCollectionDataResponse - The response type containing the collection data.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Querying collection data by creator address and collection name
                                                                                                                                                                        const collection = await aptos.getCollectionData({
                                                                                                                                                                        creatorAddress: "0x1", // replace with a real creator address
                                                                                                                                                                        collectionName: "myCollection", // specify your collection name
                                                                                                                                                                        });

                                                                                                                                                                        console.log(collection);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Queries data of a specific collection by the collection ID.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        Returns Promise<
                                                                                                                                                                            {
                                                                                                                                                                                collection_id: string;
                                                                                                                                                                                collection_name: string;
                                                                                                                                                                                creator_address: string;
                                                                                                                                                                                current_supply: any;
                                                                                                                                                                                description: string;
                                                                                                                                                                                last_transaction_timestamp: any;
                                                                                                                                                                                last_transaction_version: any;
                                                                                                                                                                                max_supply?: any;
                                                                                                                                                                                mutable_description?: boolean
                                                                                                                                                                                | null;
                                                                                                                                                                                mutable_uri?: boolean | null;
                                                                                                                                                                                table_handle_v1?: string | null;
                                                                                                                                                                                token_standard: string;
                                                                                                                                                                                total_minted_v2?: any;
                                                                                                                                                                                uri: string;
                                                                                                                                                                            },
                                                                                                                                                                        >

                                                                                                                                                                        GetCollectionDataResponse - The response type containing the collection data.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Fetching collection data by collection ID
                                                                                                                                                                        const collection = await aptos.getCollectionDataByCollectionId({
                                                                                                                                                                        collectionId: "0x123", // replace with a real collection ID
                                                                                                                                                                        });

                                                                                                                                                                        console.log(collection);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Retrieves data for a specific collection created by a given creator address. +This function allows you to query collection data while optionally specifying a minimum ledger version and pagination options.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        Returns Promise<
                                                                                                                                                                            {
                                                                                                                                                                                collection_id: string;
                                                                                                                                                                                collection_name: string;
                                                                                                                                                                                creator_address: string;
                                                                                                                                                                                current_supply: any;
                                                                                                                                                                                description: string;
                                                                                                                                                                                last_transaction_timestamp: any;
                                                                                                                                                                                last_transaction_version: any;
                                                                                                                                                                                max_supply?: any;
                                                                                                                                                                                mutable_description?: boolean
                                                                                                                                                                                | null;
                                                                                                                                                                                mutable_uri?: boolean | null;
                                                                                                                                                                                table_handle_v1?: string | null;
                                                                                                                                                                                token_standard: string;
                                                                                                                                                                                total_minted_v2?: any;
                                                                                                                                                                                uri: string;
                                                                                                                                                                            },
                                                                                                                                                                        >

                                                                                                                                                                        GetCollectionDataResponse - The response type containing collection data.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Retrieve collection data by creator address
                                                                                                                                                                        const collectionData = await aptos.getCollectionDataByCreatorAddress({
                                                                                                                                                                        creatorAddress: "0x1", // replace with a real creator address
                                                                                                                                                                        minimumLedgerVersion: 1, // specify the minimum ledger version if needed
                                                                                                                                                                        options: {
                                                                                                                                                                        tokenStandard: "v2", // specify the token standard if needed
                                                                                                                                                                        pagination: { limit: 10, offset: 0 } // specify pagination options if needed
                                                                                                                                                                        }
                                                                                                                                                                        });

                                                                                                                                                                        console.log(collectionData);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Queries data of a specific collection by the collection creator address and the collection name. +If a creator account has multiple collections with the same name across different versions, +specify the tokenStandard parameter to query a specific standard.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        Returns Promise<
                                                                                                                                                                            {
                                                                                                                                                                                collection_id: string;
                                                                                                                                                                                collection_name: string;
                                                                                                                                                                                creator_address: string;
                                                                                                                                                                                current_supply: any;
                                                                                                                                                                                description: string;
                                                                                                                                                                                last_transaction_timestamp: any;
                                                                                                                                                                                last_transaction_version: any;
                                                                                                                                                                                max_supply?: any;
                                                                                                                                                                                mutable_description?: boolean
                                                                                                                                                                                | null;
                                                                                                                                                                                mutable_uri?: boolean | null;
                                                                                                                                                                                table_handle_v1?: string | null;
                                                                                                                                                                                token_standard: string;
                                                                                                                                                                                total_minted_v2?: any;
                                                                                                                                                                                uri: string;
                                                                                                                                                                            },
                                                                                                                                                                        >

                                                                                                                                                                        GetCollectionDataResponse - The response type containing collection data.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Fetching collection data by creator address and collection name
                                                                                                                                                                        const collection = await aptos.getCollectionDataByCreatorAddressAndCollectionName({
                                                                                                                                                                        creatorAddress: "0x1", // replace with a real creator address
                                                                                                                                                                        collectionName: "myCollection",
                                                                                                                                                                        minimumLedgerVersion: 1, // optional, specify if needed
                                                                                                                                                                        options: { tokenStandard: "v2" } // optional, specify if needed
                                                                                                                                                                        });

                                                                                                                                                                        console.log(collection);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Queries the ID of a specified collection. +This ID corresponds to the collection's object address in V2, while V1 does not utilize objects and lacks an address.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        Returns Promise<string>

                                                                                                                                                                        The collection ID.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Fetching the collection ID for a specific creator and collection name
                                                                                                                                                                        const collectionId = await aptos.getCollectionId({
                                                                                                                                                                        creatorAddress: "0x1", // replace with a real creator address
                                                                                                                                                                        collectionName: "myCollection"
                                                                                                                                                                        });

                                                                                                                                                                        console.log("Collection ID:", collectionId);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Retrieves the current ownership data of a specified digital asset using its address.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: { digitalAssetAddress: AccountAddressInput; minimumLedgerVersion?: AnyNumber }

                                                                                                                                                                          The parameters for the request.

                                                                                                                                                                          +
                                                                                                                                                                          • digitalAssetAddress: AccountAddressInput

                                                                                                                                                                            The address of the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                                            Optional ledger version to sync up to before querying.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<
                                                                                                                                                                            {
                                                                                                                                                                                amount: any;
                                                                                                                                                                                current_token_data?: | {
                                                                                                                                                                                    collection_id: string;
                                                                                                                                                                                    current_collection?: | {
                                                                                                                                                                                        collection_id: string;
                                                                                                                                                                                        collection_name: string;
                                                                                                                                                                                        creator_address: string;
                                                                                                                                                                                        current_supply: any;
                                                                                                                                                                                        description: string;
                                                                                                                                                                                        last_transaction_timestamp: any;
                                                                                                                                                                                        last_transaction_version: any;
                                                                                                                                                                                        max_supply?: any;
                                                                                                                                                                                        mutable_description?: boolean
                                                                                                                                                                                        | null;
                                                                                                                                                                                        mutable_uri?: boolean | null;
                                                                                                                                                                                        table_handle_v1?: string | null;
                                                                                                                                                                                        token_standard: string;
                                                                                                                                                                                        total_minted_v2?: any;
                                                                                                                                                                                        uri: string;
                                                                                                                                                                                    }
                                                                                                                                                                                    | null;
                                                                                                                                                                                    decimals?: any;
                                                                                                                                                                                    description: string;
                                                                                                                                                                                    is_fungible_v2?: boolean
                                                                                                                                                                                    | null;
                                                                                                                                                                                    largest_property_version_v1?: any;
                                                                                                                                                                                    last_transaction_timestamp: any;
                                                                                                                                                                                    last_transaction_version: any;
                                                                                                                                                                                    maximum?: any;
                                                                                                                                                                                    supply?: any;
                                                                                                                                                                                    token_data_id: string;
                                                                                                                                                                                    token_name: string;
                                                                                                                                                                                    token_properties: any;
                                                                                                                                                                                    token_standard: string;
                                                                                                                                                                                    token_uri: string;
                                                                                                                                                                                }
                                                                                                                                                                                | null;
                                                                                                                                                                                is_fungible_v2?: boolean
                                                                                                                                                                                | null;
                                                                                                                                                                                is_soulbound_v2?: boolean | null;
                                                                                                                                                                                last_transaction_timestamp: any;
                                                                                                                                                                                last_transaction_version: any;
                                                                                                                                                                                owner_address: string;
                                                                                                                                                                                property_version_v1: any;
                                                                                                                                                                                storage_id: string;
                                                                                                                                                                                table_type_v1?: string | null;
                                                                                                                                                                                token_data_id: string;
                                                                                                                                                                                token_properties_mutated_v1?: any;
                                                                                                                                                                                token_standard: string;
                                                                                                                                                                            },
                                                                                                                                                                        >

                                                                                                                                                                        GetCurrentTokenOwnershipResponse containing relevant ownership data of the digital asset.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Getting the current ownership of a digital asset
                                                                                                                                                                        const digitalAssetOwner = await aptos.getCurrentDigitalAssetOwnership({
                                                                                                                                                                        digitalAssetAddress: "0x123", // replace with a real digital asset address
                                                                                                                                                                        });

                                                                                                                                                                        console.log(digitalAssetOwner);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Retrieves the activity data for a specified digital asset using its address.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: {
                                                                                                                                                                              digitalAssetAddress: AccountAddressInput;
                                                                                                                                                                              minimumLedgerVersion?: AnyNumber;
                                                                                                                                                                              options?: PaginationArgs & OrderByArg<
                                                                                                                                                                                  {
                                                                                                                                                                                      after_value?: string
                                                                                                                                                                                      | null;
                                                                                                                                                                                      before_value?: string | null;
                                                                                                                                                                                      entry_function_id_str?: string | null;
                                                                                                                                                                                      event_account_address: string;
                                                                                                                                                                                      event_index: any;
                                                                                                                                                                                      from_address?: string | null;
                                                                                                                                                                                      is_fungible_v2?: boolean | null;
                                                                                                                                                                                      property_version_v1: any;
                                                                                                                                                                                      to_address?: string | null;
                                                                                                                                                                                      token_amount: any;
                                                                                                                                                                                      token_data_id: string;
                                                                                                                                                                                      token_standard: string;
                                                                                                                                                                                      transaction_timestamp: any;
                                                                                                                                                                                      transaction_version: any;
                                                                                                                                                                                      type: string;
                                                                                                                                                                                  },
                                                                                                                                                                              >;
                                                                                                                                                                          }

                                                                                                                                                                          The parameters for the request.

                                                                                                                                                                          +
                                                                                                                                                                          • digitalAssetAddress: AccountAddressInput

                                                                                                                                                                            The address of the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                                            Optional minimum ledger version to sync up to before querying.

                                                                                                                                                                            +
                                                                                                                                                                          • Optionaloptions?: PaginationArgs & OrderByArg<
                                                                                                                                                                                {
                                                                                                                                                                                    after_value?: string
                                                                                                                                                                                    | null;
                                                                                                                                                                                    before_value?: string | null;
                                                                                                                                                                                    entry_function_id_str?: string | null;
                                                                                                                                                                                    event_account_address: string;
                                                                                                                                                                                    event_index: any;
                                                                                                                                                                                    from_address?: string | null;
                                                                                                                                                                                    is_fungible_v2?: boolean | null;
                                                                                                                                                                                    property_version_v1: any;
                                                                                                                                                                                    to_address?: string | null;
                                                                                                                                                                                    token_amount: any;
                                                                                                                                                                                    token_data_id: string;
                                                                                                                                                                                    token_standard: string;
                                                                                                                                                                                    transaction_timestamp: any;
                                                                                                                                                                                    transaction_version: any;
                                                                                                                                                                                    type: string;
                                                                                                                                                                                },
                                                                                                                                                                            >

                                                                                                                                                                            Optional pagination and ordering parameters.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<
                                                                                                                                                                            {
                                                                                                                                                                                after_value?: string
                                                                                                                                                                                | null;
                                                                                                                                                                                before_value?: string | null;
                                                                                                                                                                                entry_function_id_str?: string | null;
                                                                                                                                                                                event_account_address: string;
                                                                                                                                                                                event_index: any;
                                                                                                                                                                                from_address?: string | null;
                                                                                                                                                                                is_fungible_v2?: boolean | null;
                                                                                                                                                                                property_version_v1: any;
                                                                                                                                                                                to_address?: string | null;
                                                                                                                                                                                token_amount: any;
                                                                                                                                                                                token_data_id: string;
                                                                                                                                                                                token_standard: string;
                                                                                                                                                                                transaction_timestamp: any;
                                                                                                                                                                                transaction_version: any;
                                                                                                                                                                                type: string;
                                                                                                                                                                            }[],
                                                                                                                                                                        >

                                                                                                                                                                        A promise that resolves to the activity data related to the digital asset.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Get the activity data for a digital asset
                                                                                                                                                                        const digitalAssetActivity = await aptos.getDigitalAssetActivity({
                                                                                                                                                                        digitalAssetAddress: "0x123", // replace with a real digital asset address
                                                                                                                                                                        });

                                                                                                                                                                        console.log(digitalAssetActivity);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Retrieves digital asset data using the address of a digital asset.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: { digitalAssetAddress: AccountAddressInput; minimumLedgerVersion?: AnyNumber }

                                                                                                                                                                          The parameters for the request.

                                                                                                                                                                          +
                                                                                                                                                                          • digitalAssetAddress: AccountAddressInput

                                                                                                                                                                            The address of the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                                            Optional ledger version to sync up to before querying.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<
                                                                                                                                                                            {
                                                                                                                                                                                collection_id: string;
                                                                                                                                                                                current_collection?: | {
                                                                                                                                                                                    collection_id: string;
                                                                                                                                                                                    collection_name: string;
                                                                                                                                                                                    creator_address: string;
                                                                                                                                                                                    current_supply: any;
                                                                                                                                                                                    description: string;
                                                                                                                                                                                    last_transaction_timestamp: any;
                                                                                                                                                                                    last_transaction_version: any;
                                                                                                                                                                                    max_supply?: any;
                                                                                                                                                                                    mutable_description?: boolean
                                                                                                                                                                                    | null;
                                                                                                                                                                                    mutable_uri?: boolean | null;
                                                                                                                                                                                    table_handle_v1?: string | null;
                                                                                                                                                                                    token_standard: string;
                                                                                                                                                                                    total_minted_v2?: any;
                                                                                                                                                                                    uri: string;
                                                                                                                                                                                }
                                                                                                                                                                                | null;
                                                                                                                                                                                decimals?: any;
                                                                                                                                                                                description: string;
                                                                                                                                                                                is_fungible_v2?: boolean
                                                                                                                                                                                | null;
                                                                                                                                                                                largest_property_version_v1?: any;
                                                                                                                                                                                last_transaction_timestamp: any;
                                                                                                                                                                                last_transaction_version: any;
                                                                                                                                                                                maximum?: any;
                                                                                                                                                                                supply?: any;
                                                                                                                                                                                token_data_id: string;
                                                                                                                                                                                token_name: string;
                                                                                                                                                                                token_properties: any;
                                                                                                                                                                                token_standard: string;
                                                                                                                                                                                token_uri: string;
                                                                                                                                                                            },
                                                                                                                                                                        >

                                                                                                                                                                        GetTokenDataResponse containing relevant data for the digital asset.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Fetching digital asset data for a specific address
                                                                                                                                                                        const digitalAsset = await aptos.getDigitalAssetData({
                                                                                                                                                                        digitalAssetAddress: "0x123", // replace with a real digital asset address
                                                                                                                                                                        });

                                                                                                                                                                        console.log(digitalAsset);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Retrieves the digital assets owned by a specified address.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: {
                                                                                                                                                                              minimumLedgerVersion?: AnyNumber;
                                                                                                                                                                              options?: PaginationArgs & OrderByArg<
                                                                                                                                                                                  {
                                                                                                                                                                                      amount: any;
                                                                                                                                                                                      current_token_data?: | {
                                                                                                                                                                                          collection_id: string;
                                                                                                                                                                                          current_collection?: | {
                                                                                                                                                                                              collection_id: string;
                                                                                                                                                                                              collection_name: string;
                                                                                                                                                                                              creator_address: string;
                                                                                                                                                                                              current_supply: any;
                                                                                                                                                                                              description: string;
                                                                                                                                                                                              last_transaction_timestamp: any;
                                                                                                                                                                                              last_transaction_version: any;
                                                                                                                                                                                              max_supply?: any;
                                                                                                                                                                                              mutable_description?: boolean
                                                                                                                                                                                              | null;
                                                                                                                                                                                              mutable_uri?: boolean | null;
                                                                                                                                                                                              table_handle_v1?: string | null;
                                                                                                                                                                                              token_standard: string;
                                                                                                                                                                                              total_minted_v2?: any;
                                                                                                                                                                                              uri: string;
                                                                                                                                                                                          }
                                                                                                                                                                                          | null;
                                                                                                                                                                                          decimals?: any;
                                                                                                                                                                                          description: string;
                                                                                                                                                                                          is_fungible_v2?: boolean
                                                                                                                                                                                          | null;
                                                                                                                                                                                          largest_property_version_v1?: any;
                                                                                                                                                                                          last_transaction_timestamp: any;
                                                                                                                                                                                          last_transaction_version: any;
                                                                                                                                                                                          maximum?: any;
                                                                                                                                                                                          supply?: any;
                                                                                                                                                                                          token_data_id: string;
                                                                                                                                                                                          token_name: string;
                                                                                                                                                                                          token_properties: any;
                                                                                                                                                                                          token_standard: string;
                                                                                                                                                                                          token_uri: string;
                                                                                                                                                                                      }
                                                                                                                                                                                      | null;
                                                                                                                                                                                      is_fungible_v2?: boolean
                                                                                                                                                                                      | null;
                                                                                                                                                                                      is_soulbound_v2?: boolean | null;
                                                                                                                                                                                      last_transaction_timestamp: any;
                                                                                                                                                                                      last_transaction_version: any;
                                                                                                                                                                                      owner_address: string;
                                                                                                                                                                                      property_version_v1: any;
                                                                                                                                                                                      storage_id: string;
                                                                                                                                                                                      table_type_v1?: string | null;
                                                                                                                                                                                      token_data_id: string;
                                                                                                                                                                                      token_properties_mutated_v1?: any;
                                                                                                                                                                                      token_standard: string;
                                                                                                                                                                                  },
                                                                                                                                                                              >;
                                                                                                                                                                              ownerAddress: AccountAddressInput;
                                                                                                                                                                          }
                                                                                                                                                                          • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                                            Optional ledger version to sync up to before querying.

                                                                                                                                                                            +
                                                                                                                                                                          • Optionaloptions?: PaginationArgs & OrderByArg<
                                                                                                                                                                                {
                                                                                                                                                                                    amount: any;
                                                                                                                                                                                    current_token_data?: | {
                                                                                                                                                                                        collection_id: string;
                                                                                                                                                                                        current_collection?: | {
                                                                                                                                                                                            collection_id: string;
                                                                                                                                                                                            collection_name: string;
                                                                                                                                                                                            creator_address: string;
                                                                                                                                                                                            current_supply: any;
                                                                                                                                                                                            description: string;
                                                                                                                                                                                            last_transaction_timestamp: any;
                                                                                                                                                                                            last_transaction_version: any;
                                                                                                                                                                                            max_supply?: any;
                                                                                                                                                                                            mutable_description?: boolean
                                                                                                                                                                                            | null;
                                                                                                                                                                                            mutable_uri?: boolean | null;
                                                                                                                                                                                            table_handle_v1?: string | null;
                                                                                                                                                                                            token_standard: string;
                                                                                                                                                                                            total_minted_v2?: any;
                                                                                                                                                                                            uri: string;
                                                                                                                                                                                        }
                                                                                                                                                                                        | null;
                                                                                                                                                                                        decimals?: any;
                                                                                                                                                                                        description: string;
                                                                                                                                                                                        is_fungible_v2?: boolean
                                                                                                                                                                                        | null;
                                                                                                                                                                                        largest_property_version_v1?: any;
                                                                                                                                                                                        last_transaction_timestamp: any;
                                                                                                                                                                                        last_transaction_version: any;
                                                                                                                                                                                        maximum?: any;
                                                                                                                                                                                        supply?: any;
                                                                                                                                                                                        token_data_id: string;
                                                                                                                                                                                        token_name: string;
                                                                                                                                                                                        token_properties: any;
                                                                                                                                                                                        token_standard: string;
                                                                                                                                                                                        token_uri: string;
                                                                                                                                                                                    }
                                                                                                                                                                                    | null;
                                                                                                                                                                                    is_fungible_v2?: boolean
                                                                                                                                                                                    | null;
                                                                                                                                                                                    is_soulbound_v2?: boolean | null;
                                                                                                                                                                                    last_transaction_timestamp: any;
                                                                                                                                                                                    last_transaction_version: any;
                                                                                                                                                                                    owner_address: string;
                                                                                                                                                                                    property_version_v1: any;
                                                                                                                                                                                    storage_id: string;
                                                                                                                                                                                    table_type_v1?: string | null;
                                                                                                                                                                                    token_data_id: string;
                                                                                                                                                                                    token_properties_mutated_v1?: any;
                                                                                                                                                                                    token_standard: string;
                                                                                                                                                                                },
                                                                                                                                                                            >

                                                                                                                                                                            Optional pagination and ordering parameters for the response.

                                                                                                                                                                            +
                                                                                                                                                                          • ownerAddress: AccountAddressInput

                                                                                                                                                                            The address of the owner.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<
                                                                                                                                                                            {
                                                                                                                                                                                amount: any;
                                                                                                                                                                                current_token_data?: | {
                                                                                                                                                                                    collection_id: string;
                                                                                                                                                                                    current_collection?: | {
                                                                                                                                                                                        collection_id: string;
                                                                                                                                                                                        collection_name: string;
                                                                                                                                                                                        creator_address: string;
                                                                                                                                                                                        current_supply: any;
                                                                                                                                                                                        description: string;
                                                                                                                                                                                        last_transaction_timestamp: any;
                                                                                                                                                                                        last_transaction_version: any;
                                                                                                                                                                                        max_supply?: any;
                                                                                                                                                                                        mutable_description?: boolean
                                                                                                                                                                                        | null;
                                                                                                                                                                                        mutable_uri?: boolean | null;
                                                                                                                                                                                        table_handle_v1?: string | null;
                                                                                                                                                                                        token_standard: string;
                                                                                                                                                                                        total_minted_v2?: any;
                                                                                                                                                                                        uri: string;
                                                                                                                                                                                    }
                                                                                                                                                                                    | null;
                                                                                                                                                                                    decimals?: any;
                                                                                                                                                                                    description: string;
                                                                                                                                                                                    is_fungible_v2?: boolean
                                                                                                                                                                                    | null;
                                                                                                                                                                                    largest_property_version_v1?: any;
                                                                                                                                                                                    last_transaction_timestamp: any;
                                                                                                                                                                                    last_transaction_version: any;
                                                                                                                                                                                    maximum?: any;
                                                                                                                                                                                    supply?: any;
                                                                                                                                                                                    token_data_id: string;
                                                                                                                                                                                    token_name: string;
                                                                                                                                                                                    token_properties: any;
                                                                                                                                                                                    token_standard: string;
                                                                                                                                                                                    token_uri: string;
                                                                                                                                                                                }
                                                                                                                                                                                | null;
                                                                                                                                                                                is_fungible_v2?: boolean
                                                                                                                                                                                | null;
                                                                                                                                                                                is_soulbound_v2?: boolean | null;
                                                                                                                                                                                last_transaction_timestamp: any;
                                                                                                                                                                                last_transaction_version: any;
                                                                                                                                                                                owner_address: string;
                                                                                                                                                                                property_version_v1: any;
                                                                                                                                                                                storage_id: string;
                                                                                                                                                                                table_type_v1?: string | null;
                                                                                                                                                                                token_data_id: string;
                                                                                                                                                                                token_properties_mutated_v1?: any;
                                                                                                                                                                                token_standard: string;
                                                                                                                                                                            }[],
                                                                                                                                                                        >

                                                                                                                                                                        GetOwnedTokensResponse containing ownership data of the digital assets belonging to the ownerAddress.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Fetching the digital assets owned by the specified address
                                                                                                                                                                        const digitalAssets = await aptos.getOwnedDigitalAssets({
                                                                                                                                                                        ownerAddress: "0x1", // replace with a real account address
                                                                                                                                                                        });

                                                                                                                                                                        console.log(digitalAssets);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Create a transaction to mint a digital asset into the creator's account within an existing collection. +This function helps you generate a transaction that can be simulated or submitted to the blockchain for minting a digital asset.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: {
                                                                                                                                                                              collection: string;
                                                                                                                                                                              creator: Account;
                                                                                                                                                                              description: string;
                                                                                                                                                                              name: string;
                                                                                                                                                                              options?: InputGenerateTransactionOptions;
                                                                                                                                                                              propertyKeys?: string[];
                                                                                                                                                                              propertyTypes?: (
                                                                                                                                                                                  | "BOOLEAN"
                                                                                                                                                                                  | "U8"
                                                                                                                                                                                  | "U16"
                                                                                                                                                                                  | "U32"
                                                                                                                                                                                  | "U64"
                                                                                                                                                                                  | "U128"
                                                                                                                                                                                  | "U256"
                                                                                                                                                                                  | "ADDRESS"
                                                                                                                                                                                  | "STRING"
                                                                                                                                                                                  | "ARRAY"
                                                                                                                                                                              )[];
                                                                                                                                                                              propertyValues?: PropertyValue[];
                                                                                                                                                                              uri: string;
                                                                                                                                                                          }
                                                                                                                                                                          • collection: string

                                                                                                                                                                            The name of the collection the digital asset belongs to.

                                                                                                                                                                            +
                                                                                                                                                                          • creator: Account

                                                                                                                                                                            The creator of the collection.

                                                                                                                                                                            +
                                                                                                                                                                          • description: string

                                                                                                                                                                            The description of the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • name: string

                                                                                                                                                                            The name of the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • Optionaloptions?: InputGenerateTransactionOptions

                                                                                                                                                                            Optional transaction generation options.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionalpropertyKeys?: string[]

                                                                                                                                                                            Optional array of property keys for the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionalpropertyTypes?: (
                                                                                                                                                                                | "BOOLEAN"
                                                                                                                                                                                | "U8"
                                                                                                                                                                                | "U16"
                                                                                                                                                                                | "U32"
                                                                                                                                                                                | "U64"
                                                                                                                                                                                | "U128"
                                                                                                                                                                                | "U256"
                                                                                                                                                                                | "ADDRESS"
                                                                                                                                                                                | "STRING"
                                                                                                                                                                                | "ARRAY"
                                                                                                                                                                            )[]

                                                                                                                                                                            Optional array of property types for the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionalpropertyValues?: PropertyValue[]

                                                                                                                                                                            Optional array of property values for the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • uri: string

                                                                                                                                                                            The URI to additional info about the digital asset.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<SimpleTransaction>

                                                                                                                                                                        A SimpleTransaction that can be simulated or submitted to the chain.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Creating a transaction to mint a digital asset
                                                                                                                                                                        const transaction = await aptos.mintDigitalAssetTransaction({
                                                                                                                                                                        creator: Account.generate(), // replace with a real account
                                                                                                                                                                        collection: "MyCollection",
                                                                                                                                                                        description: "This is a digital asset.",
                                                                                                                                                                        name: "MyDigitalAsset",
                                                                                                                                                                        uri: "https://example.com/my-digital-asset",
                                                                                                                                                                        });

                                                                                                                                                                        console.log(transaction);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Mint a soul bound digital asset into a recipient's account. +This function allows you to create a unique digital asset that is bound to a specific account.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: {
                                                                                                                                                                              account: Account;
                                                                                                                                                                              collection: string;
                                                                                                                                                                              description: string;
                                                                                                                                                                              name: string;
                                                                                                                                                                              options?: InputGenerateTransactionOptions;
                                                                                                                                                                              propertyKeys?: string[];
                                                                                                                                                                              propertyTypes?: (
                                                                                                                                                                                  | "BOOLEAN"
                                                                                                                                                                                  | "U8"
                                                                                                                                                                                  | "U16"
                                                                                                                                                                                  | "U32"
                                                                                                                                                                                  | "U64"
                                                                                                                                                                                  | "U128"
                                                                                                                                                                                  | "U256"
                                                                                                                                                                                  | "ADDRESS"
                                                                                                                                                                                  | "STRING"
                                                                                                                                                                                  | "ARRAY"
                                                                                                                                                                              )[];
                                                                                                                                                                              propertyValues?: PropertyValue[];
                                                                                                                                                                              recipient: AccountAddressInput;
                                                                                                                                                                              uri: string;
                                                                                                                                                                          }

                                                                                                                                                                          The arguments for minting the soul bound transaction.

                                                                                                                                                                          +
                                                                                                                                                                          • account: Account

                                                                                                                                                                            The account that mints the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • collection: string

                                                                                                                                                                            The collection name that the digital asset belongs to.

                                                                                                                                                                            +
                                                                                                                                                                          • description: string

                                                                                                                                                                            The digital asset description.

                                                                                                                                                                            +
                                                                                                                                                                          • name: string

                                                                                                                                                                            The digital asset name.

                                                                                                                                                                            +
                                                                                                                                                                          • Optionaloptions?: InputGenerateTransactionOptions

                                                                                                                                                                            Additional options for generating the transaction.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionalpropertyKeys?: string[]

                                                                                                                                                                            The property keys for storing on-chain properties.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionalpropertyTypes?: (
                                                                                                                                                                                | "BOOLEAN"
                                                                                                                                                                                | "U8"
                                                                                                                                                                                | "U16"
                                                                                                                                                                                | "U32"
                                                                                                                                                                                | "U64"
                                                                                                                                                                                | "U128"
                                                                                                                                                                                | "U256"
                                                                                                                                                                                | "ADDRESS"
                                                                                                                                                                                | "STRING"
                                                                                                                                                                                | "ARRAY"
                                                                                                                                                                            )[]

                                                                                                                                                                            The type of property values.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionalpropertyValues?: PropertyValue[]

                                                                                                                                                                            The property values to be stored on-chain.

                                                                                                                                                                            +
                                                                                                                                                                          • recipient: AccountAddressInput

                                                                                                                                                                            The account address where the digital asset will be created.

                                                                                                                                                                            +
                                                                                                                                                                          • uri: string

                                                                                                                                                                            The digital asset URL.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<SimpleTransaction>

                                                                                                                                                                        A SimpleTransaction that can be simulated or submitted to the chain.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Mint a soul bound digital asset
                                                                                                                                                                        const transaction = await aptos.mintSoulBoundTransaction({
                                                                                                                                                                        account: Account.generate(), // Replace with a real account
                                                                                                                                                                        collection: "collectionName",
                                                                                                                                                                        description: "collectionDescription",
                                                                                                                                                                        name: "digitalAssetName",
                                                                                                                                                                        uri: "digital-asset-uri.com",
                                                                                                                                                                        recipient: "0x123" // Replace with a real recipient account address
                                                                                                                                                                        });

                                                                                                                                                                        console.log(transaction);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Remove a digital asset property from the blockchain. +This function allows you to delete an existing property associated with a digital asset.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: {
                                                                                                                                                                              creator: Account;
                                                                                                                                                                              digitalAssetAddress: AccountAddressInput;
                                                                                                                                                                              digitalAssetType?: `${string}::${string}::${string}`;
                                                                                                                                                                              options?: InputGenerateTransactionOptions;
                                                                                                                                                                              propertyKey: string;
                                                                                                                                                                              propertyType:
                                                                                                                                                                                  | "BOOLEAN"
                                                                                                                                                                                  | "U8"
                                                                                                                                                                                  | "U16"
                                                                                                                                                                                  | "U32"
                                                                                                                                                                                  | "U64"
                                                                                                                                                                                  | "U128"
                                                                                                                                                                                  | "U256"
                                                                                                                                                                                  | "ADDRESS"
                                                                                                                                                                                  | "STRING"
                                                                                                                                                                                  | "ARRAY";
                                                                                                                                                                              propertyValue: PropertyValue;
                                                                                                                                                                          }

                                                                                                                                                                          The parameters required to remove the digital asset property.

                                                                                                                                                                          +
                                                                                                                                                                          • creator: Account

                                                                                                                                                                            The account that mints the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • digitalAssetAddress: AccountAddressInput

                                                                                                                                                                            The digital asset address.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                                                                                                                                            Optional. The type of the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • Optionaloptions?: InputGenerateTransactionOptions

                                                                                                                                                                            Optional. Additional options for generating the transaction.

                                                                                                                                                                            +
                                                                                                                                                                          • propertyKey: string

                                                                                                                                                                            The property key for storing on-chain properties.

                                                                                                                                                                            +
                                                                                                                                                                          • propertyType:
                                                                                                                                                                                | "BOOLEAN"
                                                                                                                                                                                | "U8"
                                                                                                                                                                                | "U16"
                                                                                                                                                                                | "U32"
                                                                                                                                                                                | "U64"
                                                                                                                                                                                | "U128"
                                                                                                                                                                                | "U256"
                                                                                                                                                                                | "ADDRESS"
                                                                                                                                                                                | "STRING"
                                                                                                                                                                                | "ARRAY"

                                                                                                                                                                            The type of property value.

                                                                                                                                                                            +
                                                                                                                                                                          • propertyValue: PropertyValue

                                                                                                                                                                            The property value to be stored on-chain.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<SimpleTransaction>

                                                                                                                                                                        A SimpleTransaction that can be simulated or submitted to the chain.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Remove a digital asset property
                                                                                                                                                                        const transaction = await aptos.removeDigitalAssetPropertyTransaction({
                                                                                                                                                                        creator: Account.generate(), // replace with a real account
                                                                                                                                                                        propertyKey: "newKey",
                                                                                                                                                                        propertyType: "BOOLEAN",
                                                                                                                                                                        propertyValue: true,
                                                                                                                                                                        digitalAssetAddress: "0x123", // replace with a real digital asset address
                                                                                                                                                                        });

                                                                                                                                                                        console.log(transaction);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Set the digital asset description to provide additional context or information about the asset.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: {
                                                                                                                                                                              creator: Account;
                                                                                                                                                                              description: string;
                                                                                                                                                                              digitalAssetAddress: AccountAddressInput;
                                                                                                                                                                              digitalAssetType?: `${string}::${string}::${string}`;
                                                                                                                                                                              options?: InputGenerateTransactionOptions;
                                                                                                                                                                          }

                                                                                                                                                                          The parameters for setting the digital asset description.

                                                                                                                                                                          +
                                                                                                                                                                          • creator: Account

                                                                                                                                                                            The creator account responsible for the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • description: string

                                                                                                                                                                            The digital asset description to be set.

                                                                                                                                                                            +
                                                                                                                                                                          • digitalAssetAddress: AccountAddressInput

                                                                                                                                                                            The address of the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                                                                                                                                            Optional. The type of the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • Optionaloptions?: InputGenerateTransactionOptions

                                                                                                                                                                            Optional. Additional options for generating the transaction.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<SimpleTransaction>

                                                                                                                                                                        A SimpleTransaction that can be simulated or submitted to the chain.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Set the digital asset description
                                                                                                                                                                        const transaction = await aptos.setDigitalAssetDescriptionTransaction({
                                                                                                                                                                        creator: Account.generate(), // replace with a real account
                                                                                                                                                                        description: "This is a digital asset description.",
                                                                                                                                                                        digitalAssetAddress: "0x123", // replace with a real digital asset address
                                                                                                                                                                        });

                                                                                                                                                                        console.log(transaction);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Set the digital asset name, allowing you to define a name for a specific digital asset on the blockchain.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: {
                                                                                                                                                                              creator: Account;
                                                                                                                                                                              digitalAssetAddress: AccountAddressInput;
                                                                                                                                                                              digitalAssetType?: `${string}::${string}::${string}`;
                                                                                                                                                                              name: string;
                                                                                                                                                                              options?: InputGenerateTransactionOptions;
                                                                                                                                                                          }

                                                                                                                                                                          The parameters for setting the digital asset name.

                                                                                                                                                                          +
                                                                                                                                                                          • creator: Account

                                                                                                                                                                            The creator account responsible for the transaction.

                                                                                                                                                                            +
                                                                                                                                                                          • digitalAssetAddress: AccountAddressInput

                                                                                                                                                                            The address of the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                                                                                                                                            Optional. The type of the digital asset, represented as a Move struct ID.

                                                                                                                                                                            +
                                                                                                                                                                          • name: string

                                                                                                                                                                            The desired name for the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • Optionaloptions?: InputGenerateTransactionOptions

                                                                                                                                                                            Optional. Additional options for generating the transaction.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<SimpleTransaction>

                                                                                                                                                                        A SimpleTransaction that can be simulated or submitted to the blockchain.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network, Account } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        const creator = Account.generate(); // Generate a new account for the creator
                                                                                                                                                                        const digitalAssetAddress = "0x123"; // replace with a real digital asset address

                                                                                                                                                                        // Set the digital asset name
                                                                                                                                                                        const transaction = await aptos.setDigitalAssetNameTransaction({
                                                                                                                                                                        creator: creator,
                                                                                                                                                                        name: "digitalAssetName",
                                                                                                                                                                        digitalAssetAddress: digitalAssetAddress,
                                                                                                                                                                        });

                                                                                                                                                                        console.log(transaction);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Set the URI for a digital asset, allowing you to associate a unique identifier with the asset.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: {
                                                                                                                                                                              creator: Account;
                                                                                                                                                                              digitalAssetAddress: AccountAddressInput;
                                                                                                                                                                              digitalAssetType?: `${string}::${string}::${string}`;
                                                                                                                                                                              options?: InputGenerateTransactionOptions;
                                                                                                                                                                              uri: string;
                                                                                                                                                                          }

                                                                                                                                                                          The parameters for the transaction.

                                                                                                                                                                          +
                                                                                                                                                                          • creator: Account

                                                                                                                                                                            The creator account initiating the transaction.

                                                                                                                                                                            +
                                                                                                                                                                          • digitalAssetAddress: AccountAddressInput

                                                                                                                                                                            The address of the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                                                                                                                                            Optional. The type of the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • Optionaloptions?: InputGenerateTransactionOptions

                                                                                                                                                                            Optional. Additional options for generating the transaction.

                                                                                                                                                                            +
                                                                                                                                                                          • uri: string

                                                                                                                                                                            The digital asset URI to be set.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<SimpleTransaction>

                                                                                                                                                                        A SimpleTransaction that can be simulated or submitted to the chain.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Set the URI for a digital asset
                                                                                                                                                                        const transaction = await aptos.setDigitalAssetURITransaction({
                                                                                                                                                                        creator: Account.generate(), // Replace with a real creator account
                                                                                                                                                                        uri: "digital-asset-uri.com",
                                                                                                                                                                        digitalAssetAddress: "0x123", // Replace with a real digital asset address
                                                                                                                                                                        });

                                                                                                                                                                        console.log(transaction);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Transfer ownership of a non-fungible digital asset. +This function allows you to transfer a digital asset only if it is not frozen, meaning the ownership transfer is not disabled.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: {
                                                                                                                                                                              digitalAssetAddress: AccountAddressInput;
                                                                                                                                                                              digitalAssetType?: `${string}::${string}::${string}`;
                                                                                                                                                                              options?: InputGenerateTransactionOptions;
                                                                                                                                                                              recipient: AccountAddress;
                                                                                                                                                                              sender: Account;
                                                                                                                                                                          }

                                                                                                                                                                          The arguments for transferring the digital asset.

                                                                                                                                                                          +
                                                                                                                                                                          • digitalAssetAddress: AccountAddressInput

                                                                                                                                                                            The address of the digital asset being transferred.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                                                                                                                                            Optional. The type of the digital asset, defaults to "0x4::token::Token".

                                                                                                                                                                            +
                                                                                                                                                                          • Optionaloptions?: InputGenerateTransactionOptions

                                                                                                                                                                            Optional. Additional options for generating the transaction.

                                                                                                                                                                            +
                                                                                                                                                                          • recipient: AccountAddress

                                                                                                                                                                            The account address of the recipient.

                                                                                                                                                                            +
                                                                                                                                                                          • sender: Account

                                                                                                                                                                            The sender account of the current digital asset owner.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<SimpleTransaction>

                                                                                                                                                                        A SimpleTransaction that can be simulated or submitted to the chain.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Transfer a digital asset
                                                                                                                                                                        const transaction = await aptos.transferDigitalAssetTransaction({
                                                                                                                                                                        sender: Account.generate(), // replace with a real sender account
                                                                                                                                                                        digitalAssetAddress: "0x123", // replace with a real digital asset address
                                                                                                                                                                        recipient: "0x456", // replace with a real recipient account address
                                                                                                                                                                        });

                                                                                                                                                                        console.log(transaction);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Unfreeze the ability to transfer a digital asset. +This function allows the specified creator account to unfreeze the transfer of a digital asset identified by its address.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: {
                                                                                                                                                                              creator: Account;
                                                                                                                                                                              digitalAssetAddress: AccountAddressInput;
                                                                                                                                                                              digitalAssetType?: `${string}::${string}::${string}`;
                                                                                                                                                                              options?: InputGenerateTransactionOptions;
                                                                                                                                                                          }

                                                                                                                                                                          The parameters for unfreezing the digital asset transfer.

                                                                                                                                                                          +
                                                                                                                                                                          • creator: Account

                                                                                                                                                                            The creator account that is unfreezing the digital asset transfer.

                                                                                                                                                                            +
                                                                                                                                                                          • digitalAssetAddress: AccountAddressInput

                                                                                                                                                                            The address of the digital asset to unfreeze.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                                                                                                                                            Optional. The type of the digital asset being unfrozen.

                                                                                                                                                                            +
                                                                                                                                                                          • Optionaloptions?: InputGenerateTransactionOptions

                                                                                                                                                                            Optional. Additional options for generating the transaction.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<SimpleTransaction>

                                                                                                                                                                        A SimpleTransaction that can be simulated or submitted to the chain.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Unfreeze the ability to transfer a digital asset
                                                                                                                                                                        const transaction = await aptos.unfreezeDigitalAssetTransaferTransaction({
                                                                                                                                                                        creator: Account.generate(), // replace with a real creator account
                                                                                                                                                                        digitalAssetAddress: "0x123", // replace with a real digital asset address
                                                                                                                                                                        });

                                                                                                                                                                        console.log(transaction);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Update a digital asset property on-chain.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: {
                                                                                                                                                                              creator: Account;
                                                                                                                                                                              digitalAssetAddress: AccountAddressInput;
                                                                                                                                                                              digitalAssetType?: `${string}::${string}::${string}`;
                                                                                                                                                                              options?: InputGenerateTransactionOptions;
                                                                                                                                                                              propertyKey: string;
                                                                                                                                                                              propertyType:
                                                                                                                                                                                  | "BOOLEAN"
                                                                                                                                                                                  | "U8"
                                                                                                                                                                                  | "U16"
                                                                                                                                                                                  | "U32"
                                                                                                                                                                                  | "U64"
                                                                                                                                                                                  | "U128"
                                                                                                                                                                                  | "U256"
                                                                                                                                                                                  | "ADDRESS"
                                                                                                                                                                                  | "STRING"
                                                                                                                                                                                  | "ARRAY";
                                                                                                                                                                              propertyValue: PropertyValue;
                                                                                                                                                                          }

                                                                                                                                                                          The parameters for updating the digital asset property.

                                                                                                                                                                          +
                                                                                                                                                                          • creator: Account

                                                                                                                                                                            The account that mints the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • digitalAssetAddress: AccountAddressInput

                                                                                                                                                                            The address of the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                                                                                                                                            Optional. The type of the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • Optionaloptions?: InputGenerateTransactionOptions

                                                                                                                                                                            Optional. Additional options for generating the transaction.

                                                                                                                                                                            +
                                                                                                                                                                          • propertyKey: string

                                                                                                                                                                            The property key for storing on-chain properties.

                                                                                                                                                                            +
                                                                                                                                                                          • propertyType:
                                                                                                                                                                                | "BOOLEAN"
                                                                                                                                                                                | "U8"
                                                                                                                                                                                | "U16"
                                                                                                                                                                                | "U32"
                                                                                                                                                                                | "U64"
                                                                                                                                                                                | "U128"
                                                                                                                                                                                | "U256"
                                                                                                                                                                                | "ADDRESS"
                                                                                                                                                                                | "STRING"
                                                                                                                                                                                | "ARRAY"

                                                                                                                                                                            The type of property value.

                                                                                                                                                                            +
                                                                                                                                                                          • propertyValue: PropertyValue

                                                                                                                                                                            The property value to be stored on-chain.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<SimpleTransaction>

                                                                                                                                                                        A SimpleTransaction that can be simulated or submitted to the chain.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Update a digital asset property
                                                                                                                                                                        const transaction = await aptos.updateDigitalAssetPropertyTransaction({
                                                                                                                                                                        creator: Account.generate(), // replace with a real account
                                                                                                                                                                        propertyKey: "newKey",
                                                                                                                                                                        propertyType: "BOOLEAN",
                                                                                                                                                                        propertyValue: false,
                                                                                                                                                                        digitalAssetAddress: "0x123", // replace with a real digital asset address
                                                                                                                                                                        });

                                                                                                                                                                        console.log(transaction);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +
                                                                                                                                                                      • Update a typed digital asset property on-chain. +This function allows you to modify the properties of a digital asset, enabling dynamic updates to its attributes.

                                                                                                                                                                        +

                                                                                                                                                                        Parameters

                                                                                                                                                                        • args: {
                                                                                                                                                                              creator: Account;
                                                                                                                                                                              digitalAssetAddress: AccountAddressInput;
                                                                                                                                                                              digitalAssetType?: `${string}::${string}::${string}`;
                                                                                                                                                                              options?: InputGenerateTransactionOptions;
                                                                                                                                                                              propertyKey: string;
                                                                                                                                                                              propertyType:
                                                                                                                                                                                  | "BOOLEAN"
                                                                                                                                                                                  | "U8"
                                                                                                                                                                                  | "U16"
                                                                                                                                                                                  | "U32"
                                                                                                                                                                                  | "U64"
                                                                                                                                                                                  | "U128"
                                                                                                                                                                                  | "U256"
                                                                                                                                                                                  | "ADDRESS"
                                                                                                                                                                                  | "STRING"
                                                                                                                                                                                  | "ARRAY";
                                                                                                                                                                              propertyValue: PropertyValue;
                                                                                                                                                                          }

                                                                                                                                                                          The arguments for updating the digital asset property.

                                                                                                                                                                          +
                                                                                                                                                                          • creator: Account

                                                                                                                                                                            The account that mints the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • digitalAssetAddress: AccountAddressInput

                                                                                                                                                                            The digital asset address.

                                                                                                                                                                            +
                                                                                                                                                                          • OptionaldigitalAssetType?: `${string}::${string}::${string}`

                                                                                                                                                                            (Optional) The type of the digital asset.

                                                                                                                                                                            +
                                                                                                                                                                          • Optionaloptions?: InputGenerateTransactionOptions

                                                                                                                                                                            (Optional) Additional options for generating the transaction.

                                                                                                                                                                            +
                                                                                                                                                                          • propertyKey: string

                                                                                                                                                                            The property key for storing on-chain properties.

                                                                                                                                                                            +
                                                                                                                                                                          • propertyType:
                                                                                                                                                                                | "BOOLEAN"
                                                                                                                                                                                | "U8"
                                                                                                                                                                                | "U16"
                                                                                                                                                                                | "U32"
                                                                                                                                                                                | "U64"
                                                                                                                                                                                | "U128"
                                                                                                                                                                                | "U256"
                                                                                                                                                                                | "ADDRESS"
                                                                                                                                                                                | "STRING"
                                                                                                                                                                                | "ARRAY"

                                                                                                                                                                            The type of property value.

                                                                                                                                                                            +
                                                                                                                                                                          • propertyValue: PropertyValue

                                                                                                                                                                            The property value to be stored on-chain.

                                                                                                                                                                            +

                                                                                                                                                                        Returns Promise<SimpleTransaction>

                                                                                                                                                                        A SimpleTransaction that can be simulated or submitted to the chain.

                                                                                                                                                                        +
                                                                                                                                                                        import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                        const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                        const aptos = new Aptos(config);

                                                                                                                                                                        async function runExample() {
                                                                                                                                                                        // Update a typed digital asset property
                                                                                                                                                                        const transaction = await aptos.updateDigitalAssetTypedPropertyTransaction({
                                                                                                                                                                        creator: Account.generate(), // replace with a real account
                                                                                                                                                                        propertyKey: "typedKey",
                                                                                                                                                                        propertyType: "U8",
                                                                                                                                                                        propertyValue: 2,
                                                                                                                                                                        digitalAssetAddress: "0x123", // replace with a real digital asset address
                                                                                                                                                                        });

                                                                                                                                                                        console.log(transaction);
                                                                                                                                                                        }
                                                                                                                                                                        runExample().catch(console.error); +
                                                                                                                                                                        + +

                                                                                                                                                                      Properties

                                                                                                                                                                      config: AptosConfig

                                                                                                                                                                      The configuration settings for the Aptos client.

                                                                                                                                                                      +
                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.EventEmitter.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.EventEmitter.html new file mode 100644 index 000000000..a06f4ac30 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.EventEmitter.html @@ -0,0 +1,24 @@ +EventEmitter | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                        Preparing search index...

                                                                                                                                                                        Class EventEmitter<EventTypes, Context>

                                                                                                                                                                        Minimal EventEmitter interface that is molded against the Node.js +EventEmitter interface.

                                                                                                                                                                        +

                                                                                                                                                                        Type Parameters

                                                                                                                                                                        • EventTypes extends ValidEventTypes = string | symbol
                                                                                                                                                                        • Context extends any = any

                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                        Index

                                                                                                                                                                        Constructors

                                                                                                                                                                        Methods

                                                                                                                                                                        • Type Parameters

                                                                                                                                                                          • T extends string | symbol

                                                                                                                                                                          Parameters

                                                                                                                                                                          Returns this

                                                                                                                                                                        • Calls each of the listeners registered for a given event.

                                                                                                                                                                          +

                                                                                                                                                                          Type Parameters

                                                                                                                                                                          • T extends string | symbol

                                                                                                                                                                          Parameters

                                                                                                                                                                          Returns boolean

                                                                                                                                                                        • Return an array listing the events for which the emitter has registered +listeners.

                                                                                                                                                                          +

                                                                                                                                                                          Returns EventNames<EventTypes>[]

                                                                                                                                                                        • Return the number of listeners listening to a given event.

                                                                                                                                                                          +

                                                                                                                                                                          Parameters

                                                                                                                                                                          Returns number

                                                                                                                                                                        • Return the listeners registered for a given event.

                                                                                                                                                                          +

                                                                                                                                                                          Type Parameters

                                                                                                                                                                          • T extends string | symbol

                                                                                                                                                                          Parameters

                                                                                                                                                                          • event: T

                                                                                                                                                                          Returns EventListener<EventTypes, T>[]

                                                                                                                                                                        • Type Parameters

                                                                                                                                                                          • T extends string | symbol

                                                                                                                                                                          Parameters

                                                                                                                                                                          Returns this

                                                                                                                                                                        • Add a listener for a given event.

                                                                                                                                                                          +

                                                                                                                                                                          Type Parameters

                                                                                                                                                                          • T extends string | symbol

                                                                                                                                                                          Parameters

                                                                                                                                                                          Returns this

                                                                                                                                                                        • Add a one-time listener for a given event.

                                                                                                                                                                          +

                                                                                                                                                                          Type Parameters

                                                                                                                                                                          • T extends string | symbol

                                                                                                                                                                          Parameters

                                                                                                                                                                          Returns this

                                                                                                                                                                        • Remove all listeners, or those of the specified event.

                                                                                                                                                                          +

                                                                                                                                                                          Parameters

                                                                                                                                                                          Returns this

                                                                                                                                                                        • Remove the listeners of a given event.

                                                                                                                                                                          +

                                                                                                                                                                          Type Parameters

                                                                                                                                                                          • T extends string | symbol

                                                                                                                                                                          Parameters

                                                                                                                                                                          Returns this

                                                                                                                                                                        Properties

                                                                                                                                                                        prefixed: string | boolean
                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Faucet.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Faucet.html new file mode 100644 index 000000000..56716abbb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Faucet.html @@ -0,0 +1,24 @@ +Faucet | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                          Preparing search index...

                                                                                                                                                                          Class Faucet

                                                                                                                                                                          A class to query all Faucet related queries on Aptos.

                                                                                                                                                                          +

                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                          Index

                                                                                                                                                                          Faucet

                                                                                                                                                                          Properties

                                                                                                                                                                          Faucet

                                                                                                                                                                          • Initializes a new instance of the Aptos client with the specified configuration.

                                                                                                                                                                            +

                                                                                                                                                                            Note that only devnet has a publicly accessible faucet. For testnet, you must use +the minting page at https://aptos.dev/network/faucet.

                                                                                                                                                                            +

                                                                                                                                                                            Parameters

                                                                                                                                                                            • config: AptosConfig

                                                                                                                                                                              The configuration settings for the Aptos client.

                                                                                                                                                                              +

                                                                                                                                                                            Returns Faucet

                                                                                                                                                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                            async function runExample() {
                                                                                                                                                                            // Create a configuration for the Aptos client
                                                                                                                                                                            const config = new AptosConfig({ network: Network.DEVNET }); // specify your own network if needed

                                                                                                                                                                            // Initialize the Aptos client with the configuration
                                                                                                                                                                            const aptos = new Aptos(config);

                                                                                                                                                                            console.log("Aptos client initialized:", aptos);
                                                                                                                                                                            }
                                                                                                                                                                            runExample().catch(console.error); +
                                                                                                                                                                            + +
                                                                                                                                                                          • This function creates an account if it does not exist and mints the specified amount of coins into that account.

                                                                                                                                                                            +

                                                                                                                                                                            Note that only devnet has a publicly accessible faucet. For testnet, you must use +the minting page at https://aptos.dev/network/faucet.

                                                                                                                                                                            +

                                                                                                                                                                            Parameters

                                                                                                                                                                            Returns Promise<UserTransactionResponse>

                                                                                                                                                                            Transaction hash of the transaction that funded the account.

                                                                                                                                                                            +
                                                                                                                                                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                            const config = new AptosConfig({ network: Network.DEVNET });
                                                                                                                                                                            const aptos = new Aptos(config);

                                                                                                                                                                            async function runExample() {
                                                                                                                                                                            // Fund an account with a specified amount of tokens
                                                                                                                                                                            const transaction = await aptos.fundAccount({
                                                                                                                                                                            accountAddress: "0x1", // replace with your account address
                                                                                                                                                                            amount: 100,
                                                                                                                                                                            });

                                                                                                                                                                            console.log("Transaction hash:", transaction.hash);
                                                                                                                                                                            }
                                                                                                                                                                            runExample().catch(console.error); +
                                                                                                                                                                            + +

                                                                                                                                                                          Properties

                                                                                                                                                                          config: AptosConfig

                                                                                                                                                                          The configuration settings for the Aptos client.

                                                                                                                                                                          +
                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.FungibleAsset.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.FungibleAsset.html new file mode 100644 index 000000000..c98c7d71b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.FungibleAsset.html @@ -0,0 +1,92 @@ +FungibleAsset | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                            Preparing search index...

                                                                                                                                                                            Class FungibleAsset

                                                                                                                                                                            A class for querying and managing fungible asset-related operations on the Aptos blockchain.

                                                                                                                                                                            +

                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                            Index

                                                                                                                                                                            FungibleAsset

                                                                                                                                                                            • Initializes a new instance of the Aptos class with the provided configuration. +This allows you to interact with the Aptos blockchain using the specified network settings.

                                                                                                                                                                              +

                                                                                                                                                                              Parameters

                                                                                                                                                                              • config: AptosConfig

                                                                                                                                                                                The configuration settings for connecting to the Aptos network.

                                                                                                                                                                                +

                                                                                                                                                                              Returns FungibleAsset

                                                                                                                                                                              import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                              async function runExample() {
                                                                                                                                                                              // Create a configuration for the Aptos client
                                                                                                                                                                              const config = new AptosConfig({ network: Network.TESTNET }); // Specify your own network if needed

                                                                                                                                                                              // Initialize the Aptos client with the configuration
                                                                                                                                                                              const aptos = new Aptos(config);

                                                                                                                                                                              console.log("Aptos client initialized:", aptos);
                                                                                                                                                                              }
                                                                                                                                                                              runExample().catch(console.error); +
                                                                                                                                                                              + +
                                                                                                                                                                            • Queries all fungible asset balances.

                                                                                                                                                                              +

                                                                                                                                                                              Parameters

                                                                                                                                                                              Returns Promise<
                                                                                                                                                                                  {
                                                                                                                                                                                      amount: any;
                                                                                                                                                                                      asset_type: string;
                                                                                                                                                                                      is_frozen: boolean;
                                                                                                                                                                                      is_primary: boolean;
                                                                                                                                                                                      last_transaction_timestamp?: any;
                                                                                                                                                                                      last_transaction_version?: any;
                                                                                                                                                                                      owner_address: string;
                                                                                                                                                                                      storage_id: string;
                                                                                                                                                                                      token_standard: string;
                                                                                                                                                                                  }[],
                                                                                                                                                                              >

                                                                                                                                                                              A list of fungible asset metadata.

                                                                                                                                                                              +
                                                                                                                                                                              import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                              const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                              const aptos = new Aptos(config);

                                                                                                                                                                              async function runExample() {
                                                                                                                                                                              // Fetching current fungible asset balances
                                                                                                                                                                              const fungibleAssetBalances = await aptos.getCurrentFungibleAssetBalances();

                                                                                                                                                                              console.log(fungibleAssetBalances);
                                                                                                                                                                              }
                                                                                                                                                                              runExample().catch(console.error); +
                                                                                                                                                                              + +
                                                                                                                                                                            • Queries all fungible asset activities and returns a list of their metadata.

                                                                                                                                                                              +

                                                                                                                                                                              Parameters

                                                                                                                                                                              Returns Promise<
                                                                                                                                                                                  {
                                                                                                                                                                                      amount?: any;
                                                                                                                                                                                      asset_type?: string
                                                                                                                                                                                      | null;
                                                                                                                                                                                      block_height: any;
                                                                                                                                                                                      entry_function_id_str?: string | null;
                                                                                                                                                                                      event_index: any;
                                                                                                                                                                                      gas_fee_payer_address?: string | null;
                                                                                                                                                                                      is_frozen?: boolean | null;
                                                                                                                                                                                      is_gas_fee: boolean;
                                                                                                                                                                                      is_transaction_success: boolean;
                                                                                                                                                                                      owner_address?: string | null;
                                                                                                                                                                                      storage_id: string;
                                                                                                                                                                                      storage_refund_amount: any;
                                                                                                                                                                                      token_standard: string;
                                                                                                                                                                                      transaction_timestamp: any;
                                                                                                                                                                                      transaction_version: any;
                                                                                                                                                                                      type: string;
                                                                                                                                                                                  }[],
                                                                                                                                                                              >

                                                                                                                                                                              A list of fungible asset metadata.

                                                                                                                                                                              +
                                                                                                                                                                              import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                              const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                              const aptos = new Aptos(config);

                                                                                                                                                                              async function runExample() {
                                                                                                                                                                              // Fetching fungible asset activities
                                                                                                                                                                              const fungibleAssetActivities = await aptos.getFungibleAssetActivities();
                                                                                                                                                                              console.log(fungibleAssetActivities);
                                                                                                                                                                              }
                                                                                                                                                                              runExample().catch(console.error); +
                                                                                                                                                                              + +
                                                                                                                                                                            • Queries all fungible asset metadata.

                                                                                                                                                                              +

                                                                                                                                                                              Parameters

                                                                                                                                                                              Returns Promise<
                                                                                                                                                                                  {
                                                                                                                                                                                      asset_type: string;
                                                                                                                                                                                      creator_address: string;
                                                                                                                                                                                      decimals: number;
                                                                                                                                                                                      icon_uri?: string
                                                                                                                                                                                      | null;
                                                                                                                                                                                      last_transaction_timestamp: any;
                                                                                                                                                                                      last_transaction_version: any;
                                                                                                                                                                                      maximum_v2?: any;
                                                                                                                                                                                      name: string;
                                                                                                                                                                                      project_uri?: string | null;
                                                                                                                                                                                      supply_aggregator_table_handle_v1?: string | null;
                                                                                                                                                                                      supply_aggregator_table_key_v1?: string | null;
                                                                                                                                                                                      supply_v2?: any;
                                                                                                                                                                                      symbol: string;
                                                                                                                                                                                      token_standard: string;
                                                                                                                                                                                  }[],
                                                                                                                                                                              >

                                                                                                                                                                              A list of fungible asset metadata.

                                                                                                                                                                              +
                                                                                                                                                                              import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                              const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                              const aptos = new Aptos(config);

                                                                                                                                                                              async function runExample() {
                                                                                                                                                                              // Fetching fungible asset metadata
                                                                                                                                                                              const fungibleAssets = await aptos.getFungibleAssetMetadata();
                                                                                                                                                                              console.log(fungibleAssets);
                                                                                                                                                                              }
                                                                                                                                                                              runExample().catch(console.error); +
                                                                                                                                                                              + +
                                                                                                                                                                            • Queries the fungible asset metadata for a specific asset type. +This function helps retrieve detailed information about a fungible asset based on its type.

                                                                                                                                                                              +

                                                                                                                                                                              Parameters

                                                                                                                                                                              • args: { assetType: string; minimumLedgerVersion?: AnyNumber }

                                                                                                                                                                                The parameters for the query.

                                                                                                                                                                                +
                                                                                                                                                                                • assetType: string

                                                                                                                                                                                  The asset type of the fungible asset, e.g., "0x1::aptos_coin::AptosCoin" for Aptos Coin.

                                                                                                                                                                                  +
                                                                                                                                                                                • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                                                  Optional ledger version to sync up to before querying.

                                                                                                                                                                                  +

                                                                                                                                                                              Returns Promise<
                                                                                                                                                                                  {
                                                                                                                                                                                      asset_type: string;
                                                                                                                                                                                      creator_address: string;
                                                                                                                                                                                      decimals: number;
                                                                                                                                                                                      icon_uri?: string
                                                                                                                                                                                      | null;
                                                                                                                                                                                      last_transaction_timestamp: any;
                                                                                                                                                                                      last_transaction_version: any;
                                                                                                                                                                                      maximum_v2?: any;
                                                                                                                                                                                      name: string;
                                                                                                                                                                                      project_uri?: string | null;
                                                                                                                                                                                      supply_aggregator_table_handle_v1?: string | null;
                                                                                                                                                                                      supply_aggregator_table_key_v1?: string | null;
                                                                                                                                                                                      supply_v2?: any;
                                                                                                                                                                                      symbol: string;
                                                                                                                                                                                      token_standard: string;
                                                                                                                                                                                  },
                                                                                                                                                                              >

                                                                                                                                                                              A fungible asset metadata item.

                                                                                                                                                                              +
                                                                                                                                                                              import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                              const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                              const aptos = new Aptos(config);

                                                                                                                                                                              async function runExample() {
                                                                                                                                                                              // Retrieve fungible asset metadata by asset type
                                                                                                                                                                              const fungibleAsset = await aptos.getFungibleAssetMetadataByAssetType({
                                                                                                                                                                              assetType: "0x1::aptos_coin::AptosCoin" // replace with your asset type
                                                                                                                                                                              });

                                                                                                                                                                              console.log(fungibleAsset);
                                                                                                                                                                              }
                                                                                                                                                                              runExample().catch(console.error); +
                                                                                                                                                                              + +
                                                                                                                                                                            • Retrieves fungible asset metadata based on the creator address.

                                                                                                                                                                              +

                                                                                                                                                                              This function allows you to query metadata for a specific fungible asset created by a given address.

                                                                                                                                                                              +

                                                                                                                                                                              Parameters

                                                                                                                                                                              • args: { creatorAddress: AccountAddressInput; minimumLedgerVersion?: AnyNumber }

                                                                                                                                                                                The parameters for the query.

                                                                                                                                                                                +
                                                                                                                                                                                • creatorAddress: AccountAddressInput

                                                                                                                                                                                  The creator address of the fungible asset.

                                                                                                                                                                                  +
                                                                                                                                                                                • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                                                  Optional ledger version to sync up to before querying.

                                                                                                                                                                                  +

                                                                                                                                                                              Returns Promise<
                                                                                                                                                                                  {
                                                                                                                                                                                      asset_type: string;
                                                                                                                                                                                      creator_address: string;
                                                                                                                                                                                      decimals: number;
                                                                                                                                                                                      icon_uri?: string
                                                                                                                                                                                      | null;
                                                                                                                                                                                      last_transaction_timestamp: any;
                                                                                                                                                                                      last_transaction_version: any;
                                                                                                                                                                                      maximum_v2?: any;
                                                                                                                                                                                      name: string;
                                                                                                                                                                                      project_uri?: string | null;
                                                                                                                                                                                      supply_aggregator_table_handle_v1?: string | null;
                                                                                                                                                                                      supply_aggregator_table_key_v1?: string | null;
                                                                                                                                                                                      supply_v2?: any;
                                                                                                                                                                                      symbol: string;
                                                                                                                                                                                      token_standard: string;
                                                                                                                                                                                  }[],
                                                                                                                                                                              >

                                                                                                                                                                              A fungible asset metadata item.

                                                                                                                                                                              +
                                                                                                                                                                              import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                              const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                              const aptos = new Aptos(config);

                                                                                                                                                                              async function runExample() {
                                                                                                                                                                              // Retrieve fungible asset metadata by creator address
                                                                                                                                                                              const fungibleAsset = await aptos.getFungibleAssetMetadataByCreatorAddress({
                                                                                                                                                                              creatorAddress: "0x123", // replace with a real creator address
                                                                                                                                                                              });

                                                                                                                                                                              console.log(fungibleAsset);
                                                                                                                                                                              }
                                                                                                                                                                              runExample().catch(console.error); +
                                                                                                                                                                              + +
                                                                                                                                                                            • Transfer a specified amount of fungible asset from the sender's primary store to the recipient's primary store. +This method allows you to transfer any fungible asset, including fungible tokens.

                                                                                                                                                                              +

                                                                                                                                                                              Parameters

                                                                                                                                                                              Returns Promise<SimpleTransaction>

                                                                                                                                                                              A SimpleTransaction that can be simulated or submitted to the chain.

                                                                                                                                                                              +
                                                                                                                                                                              import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                              const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                              const aptos = new Aptos(config);

                                                                                                                                                                              async function runExample() {
                                                                                                                                                                              // Transfer fungible asset from sender to recipient
                                                                                                                                                                              const transaction = await aptos.transferFungibleAsset({
                                                                                                                                                                              sender: Account.generate(), // replace with a real sender account
                                                                                                                                                                              fungibleAssetMetadataAddress: "0x123", // replace with a real fungible asset address
                                                                                                                                                                              recipient: "0x456", // replace with a real recipient account
                                                                                                                                                                              amount: 5
                                                                                                                                                                              });

                                                                                                                                                                              console.log(transaction);
                                                                                                                                                                              }
                                                                                                                                                                              runExample().catch(console.error); +
                                                                                                                                                                              + +
                                                                                                                                                                            • Transfer a specified amount of fungible asset from the sender's any (primary or secondary) fungible store to any (primary or secondary) fungible store. +This method allows you to transfer any fungible asset, including fungible tokens.

                                                                                                                                                                              +

                                                                                                                                                                              Parameters

                                                                                                                                                                              Returns Promise<SimpleTransaction>

                                                                                                                                                                              A SimpleTransaction that can be simulated or submitted to the chain.

                                                                                                                                                                              +

                                                                                                                                                                              Error if:

                                                                                                                                                                              +
                                                                                                                                                                                +
                                                                                                                                                                              • The sender account is invalid
                                                                                                                                                                              • +
                                                                                                                                                                              • The store addresses are invalid
                                                                                                                                                                              • +
                                                                                                                                                                              • The amount is negative or zero
                                                                                                                                                                              • +
                                                                                                                                                                              • The transaction fails to generate
                                                                                                                                                                              • +
                                                                                                                                                                              +
                                                                                                                                                                              import { Aptos, AptosConfig, Network, Account } from "@aptos-labs/ts-sdk";

                                                                                                                                                                              const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                              const aptos = new Aptos(config);

                                                                                                                                                                              async function transferAssets() {
                                                                                                                                                                              // Transfer 100 units of the asset from senderStore to recipientStore
                                                                                                                                                                              const transaction = await aptos.transferFungibleAssetBetweenStores({
                                                                                                                                                                              sender: Account.generate(), // replace with a real sender account
                                                                                                                                                                              fromStore: "0x123", // replace with a real fungible store address
                                                                                                                                                                              toStore: "0x456", // replace with a real fungible store address
                                                                                                                                                                              amount: 100
                                                                                                                                                                              });

                                                                                                                                                                              console.log(transaction);
                                                                                                                                                                              }

                                                                                                                                                                              transferAssets().catch(console.error); +
                                                                                                                                                                              + +

                                                                                                                                                                            Properties

                                                                                                                                                                            config: AptosConfig

                                                                                                                                                                            The configuration settings for connecting to the Aptos network.

                                                                                                                                                                            +
                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.G1Bytes.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.G1Bytes.html new file mode 100644 index 000000000..b6c89a388 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.G1Bytes.html @@ -0,0 +1,25 @@ +G1Bytes | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                              Preparing search index...

                                                                                                                                                                              Class G1Bytes

                                                                                                                                                                              Represents a fixed-size byte array of 32 bytes, extending the Serializable class. +This class is used for handling and serializing G1 bytes in cryptographic operations.

                                                                                                                                                                              +

                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                              Index

                                                                                                                                                                              Implementation - BCS

                                                                                                                                                                              • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                +

                                                                                                                                                                                Returns Uint8Array

                                                                                                                                                                                the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                +
                                                                                                                                                                              • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                +

                                                                                                                                                                                Returns Hex

                                                                                                                                                                                A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                +

                                                                                                                                                                              Constructors

                                                                                                                                                                              Methods

                                                                                                                                                                              • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                +

                                                                                                                                                                                Returns string

                                                                                                                                                                                the hex formatas a string prefixed by 0x.

                                                                                                                                                                                +

                                                                                                                                                                              Properties

                                                                                                                                                                              data: Uint8Array
                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.G2Bytes.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.G2Bytes.html new file mode 100644 index 000000000..533ac73d0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.G2Bytes.html @@ -0,0 +1,23 @@ +G2Bytes | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                Class G2Bytes

                                                                                                                                                                                Represents a 64-byte G2 element in a cryptographic context. +This class provides methods for serialization and deserialization of G2 bytes.

                                                                                                                                                                                +

                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                Index

                                                                                                                                                                                Implementation - BCS

                                                                                                                                                                                • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                  +

                                                                                                                                                                                  Returns Uint8Array

                                                                                                                                                                                  the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                  +
                                                                                                                                                                                • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                  +

                                                                                                                                                                                  Returns Hex

                                                                                                                                                                                  A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                  +

                                                                                                                                                                                Constructors

                                                                                                                                                                                Methods

                                                                                                                                                                                • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                  +

                                                                                                                                                                                  Returns string

                                                                                                                                                                                  the hex formatas a string prefixed by 0x.

                                                                                                                                                                                  +

                                                                                                                                                                                Properties

                                                                                                                                                                                data: Uint8Array
                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.General.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.General.html new file mode 100644 index 000000000..7bc113c63 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.General.html @@ -0,0 +1,83 @@ +General | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                  Class General

                                                                                                                                                                                  A class to query various Aptos-related information and perform operations on the Aptos blockchain.

                                                                                                                                                                                  +

                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                  Index

                                                                                                                                                                                  General

                                                                                                                                                                                  • Initializes a new instance of the Aptos client with the specified configuration. +This allows users to interact with the Aptos blockchain using the provided settings.

                                                                                                                                                                                    +

                                                                                                                                                                                    Parameters

                                                                                                                                                                                    • config: AptosConfig

                                                                                                                                                                                      The configuration settings for the Aptos client.

                                                                                                                                                                                      +

                                                                                                                                                                                    Returns General

                                                                                                                                                                                    import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                    async function runExample() {
                                                                                                                                                                                    // Create a configuration for the Aptos client
                                                                                                                                                                                    const config = new AptosConfig({
                                                                                                                                                                                    network: Network.TESTNET, // specify the network
                                                                                                                                                                                    nodeUrl: "https://testnet.aptos.dev" // specify the node URL
                                                                                                                                                                                    });

                                                                                                                                                                                    // Initialize the Aptos client with the configuration
                                                                                                                                                                                    const aptos = new Aptos(config);

                                                                                                                                                                                    console.log("Aptos client initialized:", aptos);
                                                                                                                                                                                    }
                                                                                                                                                                                    runExample().catch(console.error); +
                                                                                                                                                                                    + +
                                                                                                                                                                                  • Retrieve a block by its height, allowing for the inclusion of transactions if specified.

                                                                                                                                                                                    +

                                                                                                                                                                                    Parameters

                                                                                                                                                                                    • args: { blockHeight: AnyNumber; options?: { withTransactions?: boolean } }

                                                                                                                                                                                      The parameters for the block retrieval.

                                                                                                                                                                                      +
                                                                                                                                                                                      • blockHeight: AnyNumber

                                                                                                                                                                                        The block height to look up, starting at 0.

                                                                                                                                                                                        +
                                                                                                                                                                                      • Optionaloptions?: { withTransactions?: boolean }

                                                                                                                                                                                        Optional settings for the retrieval.

                                                                                                                                                                                        +
                                                                                                                                                                                        • OptionalwithTransactions?: boolean

                                                                                                                                                                                          If set to true, includes all transactions in the block.

                                                                                                                                                                                          +

                                                                                                                                                                                    Returns Promise<Block>

                                                                                                                                                                                    The block with optional transactions included.

                                                                                                                                                                                    +
                                                                                                                                                                                    import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                    const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                    const aptos = new Aptos(config);

                                                                                                                                                                                    async function runExample() {
                                                                                                                                                                                    // Retrieve the block at height 5, including transactions
                                                                                                                                                                                    const block = await aptos.getBlockByHeight({ blockHeight: 5, options: { withTransactions: true } });
                                                                                                                                                                                    console.log(block);
                                                                                                                                                                                    }
                                                                                                                                                                                    runExample().catch(console.error); +
                                                                                                                                                                                    + +
                                                                                                                                                                                  • Retrieves block information by the specified ledger version.

                                                                                                                                                                                    +

                                                                                                                                                                                    Parameters

                                                                                                                                                                                    • args: { ledgerVersion: AnyNumber; options?: { withTransactions?: boolean } }

                                                                                                                                                                                      The arguments for retrieving the block.

                                                                                                                                                                                      +
                                                                                                                                                                                      • ledgerVersion: AnyNumber

                                                                                                                                                                                        The ledger version to lookup block information for.

                                                                                                                                                                                        +
                                                                                                                                                                                      • Optionaloptions?: { withTransactions?: boolean }

                                                                                                                                                                                        Optional parameters for the request.

                                                                                                                                                                                        +
                                                                                                                                                                                        • OptionalwithTransactions?: boolean

                                                                                                                                                                                          If set to true, include all transactions in the block.

                                                                                                                                                                                          +

                                                                                                                                                                                    Returns Promise<Block>

                                                                                                                                                                                    Block information with optional transactions.

                                                                                                                                                                                    +
                                                                                                                                                                                    import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                    const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                    const aptos = new Aptos(config);

                                                                                                                                                                                    async function runExample() {
                                                                                                                                                                                    // Retrieve block information for a specific ledger version
                                                                                                                                                                                    const block = await aptos.getBlockByVersion({ ledgerVersion: 5 });
                                                                                                                                                                                    console.log(block);
                                                                                                                                                                                    }
                                                                                                                                                                                    runExample().catch(console.error); +
                                                                                                                                                                                    + +
                                                                                                                                                                                  • Retrieves the chain ID of the Aptos blockchain.

                                                                                                                                                                                    +

                                                                                                                                                                                    Returns Promise<number>

                                                                                                                                                                                    import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                    const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                    const aptos = new Aptos(config);

                                                                                                                                                                                    async function runExample() {
                                                                                                                                                                                    // Fetching the chain ID
                                                                                                                                                                                    const chainId = await aptos.getChainId();
                                                                                                                                                                                    console.log("Chain ID:", chainId);
                                                                                                                                                                                    }
                                                                                                                                                                                    runExample().catch(console.error);

                                                                                                                                                                                    @returns The chain ID of the Aptos blockchain. +
                                                                                                                                                                                    + +
                                                                                                                                                                                  • Queries the top user transactions based on the specified limit.

                                                                                                                                                                                    +

                                                                                                                                                                                    Parameters

                                                                                                                                                                                    • args: { limit: number }

                                                                                                                                                                                      The arguments for querying top user transactions.

                                                                                                                                                                                      +
                                                                                                                                                                                      • limit: number

                                                                                                                                                                                        The number of transactions to return.

                                                                                                                                                                                        +

                                                                                                                                                                                    Returns Promise<{ version: any }[]>

                                                                                                                                                                                    GetChainTopUserTransactionsResponse

                                                                                                                                                                                    +
                                                                                                                                                                                    import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                    const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                    const aptos = new Aptos(config);

                                                                                                                                                                                    async function runExample() {
                                                                                                                                                                                    // Fetch the top user transactions with a limit of 5
                                                                                                                                                                                    const topUserTransactions = await aptos.getChainTopUserTransactions({ limit: 5 });

                                                                                                                                                                                    console.log(topUserTransactions);
                                                                                                                                                                                    }
                                                                                                                                                                                    runExample().catch(console.error); +
                                                                                                                                                                                    + +
                                                                                                                                                                                  • Queries for the last successful indexer version, providing insight into the ledger version the indexer is updated to, which +may lag behind the full nodes.

                                                                                                                                                                                    +

                                                                                                                                                                                    Returns Promise<bigint>

                                                                                                                                                                                    import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                    const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                    const aptos = new Aptos(config);

                                                                                                                                                                                    async function runExample() {
                                                                                                                                                                                    // Get the last successful indexer version
                                                                                                                                                                                    const version = await aptos.getIndexerLastSuccessVersion();
                                                                                                                                                                                    console.log(`Last successful indexer version: ${version}`);
                                                                                                                                                                                    }
                                                                                                                                                                                    runExample().catch(console.error); +
                                                                                                                                                                                    + +
                                                                                                                                                                                  • Queries for the Aptos ledger information.

                                                                                                                                                                                    +

                                                                                                                                                                                    Returns Promise<LedgerInfo>

                                                                                                                                                                                    The Aptos Ledger Info, which includes details such as chain ID, epoch, and ledger version.

                                                                                                                                                                                    +
                                                                                                                                                                                    import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                    const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                    const aptos = new Aptos(config);

                                                                                                                                                                                    async function runExample() {
                                                                                                                                                                                    // Fetching the ledger information
                                                                                                                                                                                    const ledgerInfo = await aptos.getLedgerInfo();

                                                                                                                                                                                    console.log(ledgerInfo);
                                                                                                                                                                                    }
                                                                                                                                                                                    runExample().catch(console.error); +
                                                                                                                                                                                    + +
                                                                                                                                                                                  • Query the processor status for a specific processor type.

                                                                                                                                                                                    +

                                                                                                                                                                                    Parameters

                                                                                                                                                                                    Returns Promise<{ last_success_version: any; last_updated: any; processor: string }>

                                                                                                                                                                                    The status of the specified processor type.

                                                                                                                                                                                    +
                                                                                                                                                                                    import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                    const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                    const aptos = new Aptos(config);

                                                                                                                                                                                    async function runExample() {
                                                                                                                                                                                    // Get the processor status for the account transactions processor
                                                                                                                                                                                    const status = await aptos.getProcessorStatus("account_transactions_processor");
                                                                                                                                                                                    console.log(status);
                                                                                                                                                                                    }
                                                                                                                                                                                    runExample().catch(console.error); +
                                                                                                                                                                                    + +
                                                                                                                                                                                  • Retrieves data from the Aptos Indexer using a GraphQL query. +This function allows you to execute complex queries to fetch specific data from the Aptos blockchain.

                                                                                                                                                                                    +

                                                                                                                                                                                    Type Parameters

                                                                                                                                                                                    • T extends {}

                                                                                                                                                                                    Parameters

                                                                                                                                                                                    Returns Promise<T>

                                                                                                                                                                                    The provided T type.

                                                                                                                                                                                    +
                                                                                                                                                                                    import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                    const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                    const aptos = new Aptos(config);

                                                                                                                                                                                    async function runExample() {
                                                                                                                                                                                    // Querying the Aptos Indexer for ledger information
                                                                                                                                                                                    const topUserTransactions = await aptos.queryIndexer({
                                                                                                                                                                                    query: { query: `query MyQuery {
                                                                                                                                                                                    ledger_infos {
                                                                                                                                                                                    chain_id
                                                                                                                                                                                    }
                                                                                                                                                                                    }`}
                                                                                                                                                                                    });

                                                                                                                                                                                    console.log(topUserTransactions);
                                                                                                                                                                                    }
                                                                                                                                                                                    runExample().catch(console.error); +
                                                                                                                                                                                    + +

                                                                                                                                                                                  Properties

                                                                                                                                                                                  config: AptosConfig
                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Keyless.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Keyless.html new file mode 100644 index 000000000..33f79aa1b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Keyless.html @@ -0,0 +1,44 @@ +Keyless | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                    Class Keyless

                                                                                                                                                                                    A class to query all Keyless related queries on Aptos.

                                                                                                                                                                                    +

                                                                                                                                                                                    More documentation on how to integrate Keyless Accounts see the below +Aptos Keyless Integration Guide.

                                                                                                                                                                                    +

                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                    Index

                                                                                                                                                                                    Keyless

                                                                                                                                                                                    • Initializes a new instance of the Aptos class with the provided configuration. +This allows you to interact with the Aptos blockchain using the specified network settings.

                                                                                                                                                                                      +

                                                                                                                                                                                      Parameters

                                                                                                                                                                                      • config: AptosConfig

                                                                                                                                                                                        The configuration settings for connecting to the Aptos network.

                                                                                                                                                                                        +

                                                                                                                                                                                      Returns Keyless

                                                                                                                                                                                      import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                      async function runExample() {
                                                                                                                                                                                      // Create a new configuration for the Aptos client
                                                                                                                                                                                      const config = new AptosConfig({ network: Network.TESTNET }); // Specify your desired network

                                                                                                                                                                                      // Initialize the Aptos client with the configuration
                                                                                                                                                                                      const aptos = new Aptos(config);

                                                                                                                                                                                      console.log("Aptos client initialized:", aptos);
                                                                                                                                                                                      }
                                                                                                                                                                                      runExample().catch(console.error); +
                                                                                                                                                                                      + +
                                                                                                                                                                                    • Fetches the pepper from the Aptos pepper service API.

                                                                                                                                                                                      +

                                                                                                                                                                                      Parameters

                                                                                                                                                                                      • args: { derivationPath?: string; ephemeralKeyPair: EphemeralKeyPair; jwt: string }

                                                                                                                                                                                        The arguments for fetching the pepper.

                                                                                                                                                                                        +
                                                                                                                                                                                        • OptionalderivationPath?: string

                                                                                                                                                                                          A derivation path used for creating multiple accounts per user via the BIP-44 standard. Defaults +to "m/44'/637'/0'/0'/0".

                                                                                                                                                                                          +
                                                                                                                                                                                        • ephemeralKeyPair: EphemeralKeyPair

                                                                                                                                                                                          The EphemeralKeyPair used to generate the nonce in the JWT token.

                                                                                                                                                                                          +
                                                                                                                                                                                        • jwt: string

                                                                                                                                                                                          JWT token.

                                                                                                                                                                                          +

                                                                                                                                                                                      Returns Promise<Uint8Array<ArrayBufferLike>>

                                                                                                                                                                                      The pepper which is a Uint8Array of length 31.

                                                                                                                                                                                      +
                                                                                                                                                                                      import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                      const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                      const aptos = new Aptos(config);

                                                                                                                                                                                      async function runExample() {
                                                                                                                                                                                      const ephemeralKeyPair = new EphemeralKeyPair(); // create a new ephemeral key pair
                                                                                                                                                                                      const jwt = "your_jwt_token"; // replace with a real JWT token

                                                                                                                                                                                      // Fetching the pepper using the provided JWT and ephemeral key pair
                                                                                                                                                                                      const pepper = await aptos.getPepper({
                                                                                                                                                                                      jwt,
                                                                                                                                                                                      ephemeralKeyPair,
                                                                                                                                                                                      // derivationPath: "m/44'/637'/0'/0'/0" // specify your own if needed
                                                                                                                                                                                      });

                                                                                                                                                                                      console.log("Fetched pepper:", pepper);
                                                                                                                                                                                      }
                                                                                                                                                                                      runExample().catch(console.error); +
                                                                                                                                                                                      + +
                                                                                                                                                                                    • Fetches a proof from the Aptos prover service API.

                                                                                                                                                                                      +

                                                                                                                                                                                      Parameters

                                                                                                                                                                                      • args: {
                                                                                                                                                                                            ephemeralKeyPair: EphemeralKeyPair;
                                                                                                                                                                                            jwt: string;
                                                                                                                                                                                            pepper?: HexInput;
                                                                                                                                                                                            uidKey?: string;
                                                                                                                                                                                        }

                                                                                                                                                                                        The arguments for fetching the proof.

                                                                                                                                                                                        +
                                                                                                                                                                                        • ephemeralKeyPair: EphemeralKeyPair

                                                                                                                                                                                          The EphemeralKeyPair used to generate the nonce in the JWT token.

                                                                                                                                                                                          +
                                                                                                                                                                                        • jwt: string

                                                                                                                                                                                          JWT token.

                                                                                                                                                                                          +
                                                                                                                                                                                        • Optionalpepper?: HexInput

                                                                                                                                                                                          The pepper used for the account. If not provided, it will be fetched from the Aptos pepper service.

                                                                                                                                                                                          +
                                                                                                                                                                                        • OptionaluidKey?: string

                                                                                                                                                                                          A key in the JWT token to use to set the uidVal in the IdCommitment.

                                                                                                                                                                                          +

                                                                                                                                                                                      Returns Promise<ZeroKnowledgeSig>

                                                                                                                                                                                      The proof which is represented by a ZeroKnowledgeSig.

                                                                                                                                                                                      +
                                                                                                                                                                                      import { Aptos, AptosConfig, Network, EphemeralKeyPair, getPepper } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                      const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                      const aptos = new Aptos(config);

                                                                                                                                                                                      async function runExample() {
                                                                                                                                                                                      const jwt = "your_jwt_token"; // replace with a real JWT token
                                                                                                                                                                                      const ephemeralKeyPair = new EphemeralKeyPair(); // create a new ephemeral key pair

                                                                                                                                                                                      // Fetch the proof using the getProof function
                                                                                                                                                                                      const proof = await aptos.getProof({
                                                                                                                                                                                      jwt,
                                                                                                                                                                                      ephemeralKeyPair,
                                                                                                                                                                                      pepper: await getPepper({}), // fetch the pepper if not provided
                                                                                                                                                                                      uidKey: "sub", // specify the uid key
                                                                                                                                                                                      });

                                                                                                                                                                                      console.log("Fetched proof:", proof);
                                                                                                                                                                                      }
                                                                                                                                                                                      runExample().catch(console.error); +
                                                                                                                                                                                      + +
                                                                                                                                                                                    • This installs a set of FederatedJWKs at an address for a given iss.

                                                                                                                                                                                      +

                                                                                                                                                                                      It will fetch the JSON Web Keyset (JWK) set from the well-known endpoint and update the FederatedJWKs at the sender's address +to reflect it.

                                                                                                                                                                                      +

                                                                                                                                                                                      Parameters

                                                                                                                                                                                      • args: {
                                                                                                                                                                                            iss: string;
                                                                                                                                                                                            jwksUrl?: string;
                                                                                                                                                                                            options?: InputGenerateTransactionOptions;
                                                                                                                                                                                            sender: Account;
                                                                                                                                                                                        }
                                                                                                                                                                                        • iss: string

                                                                                                                                                                                          the iss claim of the federated OIDC provider.

                                                                                                                                                                                          +
                                                                                                                                                                                        • OptionaljwksUrl?: string

                                                                                                                                                                                          the URL to find the corresponding JWKs. For supported IDP providers this parameter in not necessary.

                                                                                                                                                                                          +
                                                                                                                                                                                        • Optionaloptions?: InputGenerateTransactionOptions
                                                                                                                                                                                        • sender: Account

                                                                                                                                                                                          The account that will install the JWKs

                                                                                                                                                                                          +

                                                                                                                                                                                      Returns Promise<SimpleTransaction>

                                                                                                                                                                                      The pending transaction that results from submission.

                                                                                                                                                                                      +

                                                                                                                                                                                    Properties

                                                                                                                                                                                    config: AptosConfig

                                                                                                                                                                                    The configuration settings for connecting to the Aptos network.

                                                                                                                                                                                    +
                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Proof.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Proof.html new file mode 100644 index 000000000..14d18ccf2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Proof.html @@ -0,0 +1,19 @@ +Proof | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                      Class ProofAbstract

                                                                                                                                                                                      An abstract representation of a cryptographic proof associated with specific +zero-knowledge proof schemes, such as Groth16 and PLONK.

                                                                                                                                                                                      +

                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                      Index

                                                                                                                                                                                      Implementation - BCS

                                                                                                                                                                                      Constructors

                                                                                                                                                                                      Methods

                                                                                                                                                                                      Implementation - BCS

                                                                                                                                                                                      • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                        +

                                                                                                                                                                                        Returns Uint8Array

                                                                                                                                                                                        the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                        +
                                                                                                                                                                                      • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                        +

                                                                                                                                                                                        Returns Hex

                                                                                                                                                                                        A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                        +

                                                                                                                                                                                      Constructors

                                                                                                                                                                                      Methods

                                                                                                                                                                                      • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                        +

                                                                                                                                                                                        Returns string

                                                                                                                                                                                        the hex formatas a string prefixed by 0x.

                                                                                                                                                                                        +
                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Simulate.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Simulate.html new file mode 100644 index 000000000..610b66ea9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Simulate.html @@ -0,0 +1,34 @@ +Simulate | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                        Class Simulate

                                                                                                                                                                                        A class to handle all Simulate transaction operations.

                                                                                                                                                                                        +
                                                                                                                                                                                        Index

                                                                                                                                                                                        Implementation

                                                                                                                                                                                        Properties

                                                                                                                                                                                        Implementation

                                                                                                                                                                                        • Initializes a new instance of the Aptos client with the specified configuration. +This allows you to interact with the Aptos blockchain using the provided settings.

                                                                                                                                                                                          +

                                                                                                                                                                                          Parameters

                                                                                                                                                                                          • config: AptosConfig

                                                                                                                                                                                            The configuration settings for the Aptos client.

                                                                                                                                                                                            +

                                                                                                                                                                                          Returns Simulate

                                                                                                                                                                                          import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                          async function runExample() {
                                                                                                                                                                                          // Create a configuration for the Aptos client
                                                                                                                                                                                          const config = new AptosConfig({ network: Network.TESTNET }); // Specify your desired network

                                                                                                                                                                                          // Initialize the Aptos client with the configuration
                                                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                                                          console.log("Aptos client initialized:", aptos);
                                                                                                                                                                                          }
                                                                                                                                                                                          runExample().catch(console.error); +
                                                                                                                                                                                          + +
                                                                                                                                                                                        • Simulates a multi-agent transaction by generating a signed transaction and posting it to the Aptos full node. +This function helps in understanding the outcome of a transaction involving multiple signers before it is executed.

                                                                                                                                                                                          +

                                                                                                                                                                                          Parameters

                                                                                                                                                                                          • args: {
                                                                                                                                                                                                feePayerPublicKey?: PublicKey;
                                                                                                                                                                                                options?: InputSimulateTransactionOptions;
                                                                                                                                                                                                secondarySignersPublicKeys?: (PublicKey | undefined)[];
                                                                                                                                                                                                signerPublicKey?: PublicKey;
                                                                                                                                                                                                transaction: AnyRawTransaction;
                                                                                                                                                                                            }

                                                                                                                                                                                            The parameters for simulating the transaction.

                                                                                                                                                                                            +
                                                                                                                                                                                            • OptionalfeePayerPublicKey?: PublicKey

                                                                                                                                                                                              The public key of the fee payer (optional).

                                                                                                                                                                                              +
                                                                                                                                                                                            • Optionaloptions?: InputSimulateTransactionOptions

                                                                                                                                                                                              Options for simulating the transaction (optional).

                                                                                                                                                                                              +
                                                                                                                                                                                            • OptionalsecondarySignersPublicKeys?: (PublicKey | undefined)[]

                                                                                                                                                                                              An array of public keys for secondary signers (optional). +Each element of the array can be optional, allowing the corresponding key check to be skipped.

                                                                                                                                                                                              +
                                                                                                                                                                                            • OptionalsignerPublicKey?: PublicKey

                                                                                                                                                                                              The public key of the primary signer (optional).

                                                                                                                                                                                              +
                                                                                                                                                                                            • transaction: AnyRawTransaction

                                                                                                                                                                                              The raw transaction to be simulated.

                                                                                                                                                                                              +

                                                                                                                                                                                          Returns Promise<UserTransactionResponse[]>

                                                                                                                                                                                          import {
                                                                                                                                                                                          Account,
                                                                                                                                                                                          Aptos,
                                                                                                                                                                                          AptosConfig,
                                                                                                                                                                                          Network,
                                                                                                                                                                                          } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                          async function example() {
                                                                                                                                                                                          let sender1 = Account.generate();
                                                                                                                                                                                          let sender2 = Account.generate();
                                                                                                                                                                                          let receiver = Account.generate();

                                                                                                                                                                                          // 0. Set up the client and test accounts
                                                                                                                                                                                          const config = new AptosConfig({ network: Network.DEVNET });
                                                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                                                          await aptos.fundAccount({
                                                                                                                                                                                          accountAddress: sender.accountAddress,
                                                                                                                                                                                          amount: 100_000_000,
                                                                                                                                                                                          });

                                                                                                                                                                                          // 1. Build
                                                                                                                                                                                          console.log("\n=== 1. Building the transaction ===\n");
                                                                                                                                                                                          const transaction = await aptos.transaction.build.multiAgent({
                                                                                                                                                                                          sender: sender1.accountAddress,
                                                                                                                                                                                          secondarySignerAddresses: [sender2.accountAddress],
                                                                                                                                                                                          data: {
                                                                                                                                                                                          // REPLACE WITH YOUR MULTI-AGENT FUNCTION HERE
                                                                                                                                                                                          function:
                                                                                                                                                                                          "<REPLACE WITH YOUR MULTI AGENT MOVE ENTRY FUNCTION> (Syntax {address}::{module}::{function})",
                                                                                                                                                                                          functionArguments: [],
                                                                                                                                                                                          },
                                                                                                                                                                                          });
                                                                                                                                                                                          console.log("Transaction:", transaction);

                                                                                                                                                                                          // 2. Simulate (Optional)
                                                                                                                                                                                          console.log("\n === 2. Simulating Response (Optional) === \n");
                                                                                                                                                                                          const [userTransactionResponse] = await aptos.transaction.simulate.multiAgent(
                                                                                                                                                                                          {
                                                                                                                                                                                          signerPublicKey: sender1.publicKey,
                                                                                                                                                                                          secondarySignersPublicKeys: [sender2.publicKey],
                                                                                                                                                                                          transaction,
                                                                                                                                                                                          },
                                                                                                                                                                                          );
                                                                                                                                                                                          console.log(userTransactionResponse);

                                                                                                                                                                                          // If the fee looks ok, continue to signing!
                                                                                                                                                                                          // ...
                                                                                                                                                                                          }

                                                                                                                                                                                          example(); +
                                                                                                                                                                                          + +
                                                                                                                                                                                        • Simulates a transaction based on the provided parameters and returns the result. +This function helps you understand the outcome of a transaction before executing it on the blockchain.

                                                                                                                                                                                          +

                                                                                                                                                                                          Parameters

                                                                                                                                                                                          Returns Promise<UserTransactionResponse[]>

                                                                                                                                                                                          import {
                                                                                                                                                                                          Account,
                                                                                                                                                                                          Aptos,
                                                                                                                                                                                          AptosConfig,
                                                                                                                                                                                          Network,
                                                                                                                                                                                          } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                          async function example() {
                                                                                                                                                                                          let sender = Account.generate();
                                                                                                                                                                                          let receiver = Account.generate();

                                                                                                                                                                                          // 0. Set up the client and test accounts
                                                                                                                                                                                          const config = new AptosConfig({ network: Network.DEVNET });
                                                                                                                                                                                          const aptos = new Aptos(config);

                                                                                                                                                                                          await aptos.fundAccount({
                                                                                                                                                                                          accountAddress: sender.accountAddress,
                                                                                                                                                                                          amount: 100_000_000,
                                                                                                                                                                                          });

                                                                                                                                                                                          // 1. Build the transaction to preview the impact of it
                                                                                                                                                                                          const transaction = await aptos.transaction.build.simple({
                                                                                                                                                                                          sender: sender.accountAddress,
                                                                                                                                                                                          data: {
                                                                                                                                                                                          // All transactions on Aptos are implemented via smart contracts.
                                                                                                                                                                                          function: "0x1::aptos_account::transfer",
                                                                                                                                                                                          functionArguments: [receiver.accountAddress, 100],
                                                                                                                                                                                          },
                                                                                                                                                                                          });

                                                                                                                                                                                          // 2. Simulate to see what would happen if we execute this transaction
                                                                                                                                                                                          const [userTransactionResponse] = await aptos.transaction.simulate.simple({
                                                                                                                                                                                          signerPublicKey: sender.publicKey,
                                                                                                                                                                                          transaction,
                                                                                                                                                                                          });
                                                                                                                                                                                          console.log(userTransactionResponse);

                                                                                                                                                                                          // If the fee looks ok, continue to signing!
                                                                                                                                                                                          // ...
                                                                                                                                                                                          }

                                                                                                                                                                                          example(); +
                                                                                                                                                                                          + +

                                                                                                                                                                                        Properties

                                                                                                                                                                                        config: AptosConfig
                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Staking.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Staking.html new file mode 100644 index 000000000..b3204d5ca --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Staking.html @@ -0,0 +1,39 @@ +Staking | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                          Class Staking

                                                                                                                                                                                          A class to query all Staking related queries on Aptos.

                                                                                                                                                                                          +

                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                          Index

                                                                                                                                                                                          Properties

                                                                                                                                                                                          config: AptosConfig

                                                                                                                                                                                          The configuration settings for the Aptos client.

                                                                                                                                                                                          +

                                                                                                                                                                                          Staking

                                                                                                                                                                                          • Creates an instance of the Aptos client with the specified configuration. +This allows you to interact with the Aptos blockchain using the provided settings.

                                                                                                                                                                                            +

                                                                                                                                                                                            Parameters

                                                                                                                                                                                            • config: AptosConfig

                                                                                                                                                                                              The configuration settings for the Aptos client.

                                                                                                                                                                                              +

                                                                                                                                                                                            Returns Staking

                                                                                                                                                                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                            async function runExample() {
                                                                                                                                                                                            // Create a configuration for the Aptos client
                                                                                                                                                                                            const config = new AptosConfig({ network: Network.TESTNET }); // Specify your network

                                                                                                                                                                                            // Initialize the Aptos client with the configuration
                                                                                                                                                                                            const aptos = new Aptos(config);

                                                                                                                                                                                            console.log("Aptos client initialized:", aptos);
                                                                                                                                                                                            }
                                                                                                                                                                                            runExample().catch(console.error); +
                                                                                                                                                                                            + +
                                                                                                                                                                                          • Queries delegated staking activities for a specific delegator and pool.

                                                                                                                                                                                            +

                                                                                                                                                                                            Parameters

                                                                                                                                                                                            Returns Promise<
                                                                                                                                                                                                {
                                                                                                                                                                                                    amount: any;
                                                                                                                                                                                                    delegator_address: string;
                                                                                                                                                                                                    event_index: any;
                                                                                                                                                                                                    event_type: string;
                                                                                                                                                                                                    pool_address: string;
                                                                                                                                                                                                    transaction_version: any;
                                                                                                                                                                                                }[],
                                                                                                                                                                                            >

                                                                                                                                                                                            The response containing delegated staking activities.

                                                                                                                                                                                            +
                                                                                                                                                                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                            const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                            const aptos = new Aptos(config);

                                                                                                                                                                                            async function runExample() {
                                                                                                                                                                                            // Get delegated staking activities for a specific delegator and pool
                                                                                                                                                                                            const activities = await aptos.getDelegatedStakingActivities({
                                                                                                                                                                                            delegatorAddress: "0x1", // replace with a real delegator address
                                                                                                                                                                                            poolAddress: "0x2", // replace with a real pool address
                                                                                                                                                                                            minimumLedgerVersion: 1, // specify your own if needed
                                                                                                                                                                                            });

                                                                                                                                                                                            console.log(activities);
                                                                                                                                                                                            }
                                                                                                                                                                                            runExample().catch(console.error); +
                                                                                                                                                                                            + +
                                                                                                                                                                                          • Queries the current number of delegators in a specified pool. Throws an error if the pool is not found.

                                                                                                                                                                                            +

                                                                                                                                                                                            Parameters

                                                                                                                                                                                            Returns Promise<number>

                                                                                                                                                                                            The number of delegators for the given pool.

                                                                                                                                                                                            +
                                                                                                                                                                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                            const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                            const aptos = new Aptos(config);

                                                                                                                                                                                            async function runExample() {
                                                                                                                                                                                            // Get the number of delegators for a specific pool
                                                                                                                                                                                            const delegators = await aptos.getNumberOfDelegators({ poolAddress: "0x1" }); // replace with a real pool address
                                                                                                                                                                                            console.log(`Number of delegators: ${delegators}`);
                                                                                                                                                                                            }
                                                                                                                                                                                            runExample().catch(console.error); +
                                                                                                                                                                                            + +
                                                                                                                                                                                          • Retrieves the current number of delegators across all pools.

                                                                                                                                                                                            +

                                                                                                                                                                                            Parameters

                                                                                                                                                                                            • Optionalargs: {
                                                                                                                                                                                                  minimumLedgerVersion?: AnyNumber;
                                                                                                                                                                                                  options?: OrderByArg<
                                                                                                                                                                                                      { num_active_delegator?: any; pool_address?: string
                                                                                                                                                                                                      | null },
                                                                                                                                                                                                  >;
                                                                                                                                                                                              }

                                                                                                                                                                                              Optional parameters for the query.

                                                                                                                                                                                              +
                                                                                                                                                                                              • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                                                                Optional ledger version to sync up to before querying.

                                                                                                                                                                                                +
                                                                                                                                                                                              • Optionaloptions?: OrderByArg<{ num_active_delegator?: any; pool_address?: string | null }>

                                                                                                                                                                                                Optional ordering options for the response.

                                                                                                                                                                                                +

                                                                                                                                                                                            Returns Promise<{ num_active_delegator?: any; pool_address?: string | null }[]>

                                                                                                                                                                                            GetNumberOfDelegatorsForAllPoolsResponse response type containing the number of delegators per pool.

                                                                                                                                                                                            +
                                                                                                                                                                                            import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                            const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                            const aptos = new Aptos(config);

                                                                                                                                                                                            async function runExample() {
                                                                                                                                                                                            // Retrieve the number of delegators for all pools
                                                                                                                                                                                            const delegators = await aptos.getNumberOfDelegatorsForAllPools();
                                                                                                                                                                                            console.log(delegators);
                                                                                                                                                                                            }
                                                                                                                                                                                            runExample().catch(console.error); +
                                                                                                                                                                                            + +
                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Submit.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Submit.html new file mode 100644 index 000000000..3a2509c1b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Submit.html @@ -0,0 +1,31 @@ +Submit | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                            Class Submit

                                                                                                                                                                                            A class to handle all Submit transaction operations.

                                                                                                                                                                                            +
                                                                                                                                                                                            Index

                                                                                                                                                                                            Implementation

                                                                                                                                                                                            Properties

                                                                                                                                                                                            Implementation

                                                                                                                                                                                            • Initializes a new instance of the Aptos client with the specified configuration. +This allows you to interact with the Aptos blockchain using the provided settings.

                                                                                                                                                                                              +

                                                                                                                                                                                              Parameters

                                                                                                                                                                                              • config: AptosConfig

                                                                                                                                                                                                The configuration settings for the Aptos client.

                                                                                                                                                                                                +

                                                                                                                                                                                              Returns Submit

                                                                                                                                                                                              import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                              async function runExample() {
                                                                                                                                                                                              // Create a configuration for the Aptos client
                                                                                                                                                                                              const config = new AptosConfig({
                                                                                                                                                                                              network: Network.TESTNET, // Use the TESTNET for testing
                                                                                                                                                                                              nodeUrl: "https://testnet.aptos.dev", // Specify the node URL
                                                                                                                                                                                              faucetUrl: "https://faucet.testnet.aptos.dev" // Specify the faucet URL
                                                                                                                                                                                              });

                                                                                                                                                                                              // Initialize the Aptos client with the configuration
                                                                                                                                                                                              const aptos = new Aptos(config);

                                                                                                                                                                                              console.log("Aptos client initialized:", aptos);
                                                                                                                                                                                              }
                                                                                                                                                                                              runExample().catch(console.error); +
                                                                                                                                                                                              + +
                                                                                                                                                                                            • Submits a multi-agent transaction to the Aptos network, allowing multiple signers to authorize the transaction. +This function is useful for scenarios where a transaction requires approval from multiple accounts.

                                                                                                                                                                                              +

                                                                                                                                                                                              Parameters

                                                                                                                                                                                              Returns Promise<PendingTransactionResponse>

                                                                                                                                                                                              import { Aptos, AptosConfig, Network, Account } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                              const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                              const aptos = new Aptos(config);

                                                                                                                                                                                              async function runExample() {
                                                                                                                                                                                              const sender = Account.generate(); // Generate a new sender account
                                                                                                                                                                                              const additionalSigner1 = Account.generate(); // Generate an additional signer account
                                                                                                                                                                                              const additionalSigner2 = Account.generate(); // Generate another additional signer account

                                                                                                                                                                                              const transaction = await aptos.transaction.build.simple({
                                                                                                                                                                                              sender: sender.accountAddress,
                                                                                                                                                                                              data: {
                                                                                                                                                                                              function: "0x1::aptos_account::transfer",
                                                                                                                                                                                              functionArguments: [additionalSigner1.accountAddress, 100],
                                                                                                                                                                                              },
                                                                                                                                                                                              });

                                                                                                                                                                                              const response = await aptos.multiAgent({
                                                                                                                                                                                              transaction,
                                                                                                                                                                                              senderAuthenticator: sender.getAuthenticator(), // Use the sender's authenticator
                                                                                                                                                                                              additionalSignersAuthenticators: [
                                                                                                                                                                                              additionalSigner1.getAuthenticator(), // Use the first additional signer's authenticator
                                                                                                                                                                                              additionalSigner2.getAuthenticator(), // Use the second additional signer's authenticator
                                                                                                                                                                                              ],
                                                                                                                                                                                              });

                                                                                                                                                                                              console.log(response); // Log the response from the transaction submission
                                                                                                                                                                                              }
                                                                                                                                                                                              runExample().catch(console.error); +
                                                                                                                                                                                              + +
                                                                                                                                                                                            • Submits a transaction to the Aptos blockchain using the provided transaction details and authenticators. +This function allows you to execute transactions securely by specifying the sender and optional fee payer authenticators.

                                                                                                                                                                                              +

                                                                                                                                                                                              Parameters

                                                                                                                                                                                              Returns Promise<PendingTransactionResponse>

                                                                                                                                                                                              import { Aptos, AptosConfig, Network, Account } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                              const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                              const aptos = new Aptos(config);

                                                                                                                                                                                              async function runExample() {
                                                                                                                                                                                              const sender = Account.generate(); // Generate a new sender account
                                                                                                                                                                                              const transaction = await aptos.transaction.build.simple({
                                                                                                                                                                                              sender: sender.accountAddress,
                                                                                                                                                                                              data: {
                                                                                                                                                                                              function: "0x1::aptos_account::transfer",
                                                                                                                                                                                              functionArguments: [Account.generate().accountAddress, 100], // Replace with a real destination account
                                                                                                                                                                                              },
                                                                                                                                                                                              });

                                                                                                                                                                                              // Submit the transaction
                                                                                                                                                                                              const response = await aptos.simple({
                                                                                                                                                                                              transaction,
                                                                                                                                                                                              senderAuthenticator: sender.getAuthenticator(), // Use the sender's authenticator
                                                                                                                                                                                              });

                                                                                                                                                                                              console.log("Transaction submitted:", response);
                                                                                                                                                                                              }
                                                                                                                                                                                              runExample().catch(console.error); +
                                                                                                                                                                                              + +

                                                                                                                                                                                            Properties

                                                                                                                                                                                            config: AptosConfig
                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Table.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Table.html new file mode 100644 index 000000000..59fdbd0c1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Table.html @@ -0,0 +1,38 @@ +Table | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                              Class Table

                                                                                                                                                                                              A class to query all Table Aptos related queries.

                                                                                                                                                                                              +

                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                              Index

                                                                                                                                                                                              Properties

                                                                                                                                                                                              config: AptosConfig

                                                                                                                                                                                              Table

                                                                                                                                                                                              • Initializes a new instance of the Aptos client with the specified configuration. +This allows you to interact with the Aptos blockchain using the provided settings.

                                                                                                                                                                                                +

                                                                                                                                                                                                Parameters

                                                                                                                                                                                                • config: AptosConfig

                                                                                                                                                                                                  The configuration settings for the Aptos client.

                                                                                                                                                                                                  +

                                                                                                                                                                                                Returns Table

                                                                                                                                                                                                import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                async function runExample() {
                                                                                                                                                                                                // Create a new Aptos client with testnet configuration
                                                                                                                                                                                                const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                                const aptos = new Aptos(config);

                                                                                                                                                                                                console.log("Aptos client initialized:", aptos);
                                                                                                                                                                                                }
                                                                                                                                                                                                runExample().catch(console.error); +
                                                                                                                                                                                                + +
                                                                                                                                                                                              • Queries for a specific item in a table identified by the handle and the key for the item. +This function allows you to retrieve structured data from a table in the Aptos blockchain.

                                                                                                                                                                                                +

                                                                                                                                                                                                Type Parameters

                                                                                                                                                                                                • T

                                                                                                                                                                                                Parameters

                                                                                                                                                                                                Returns Promise<T>

                                                                                                                                                                                                Table item value rendered in JSON.

                                                                                                                                                                                                +
                                                                                                                                                                                                import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                                const aptos = new Aptos(config);

                                                                                                                                                                                                async function runExample() {
                                                                                                                                                                                                // Retrieve a table item from the Aptos blockchain
                                                                                                                                                                                                const tableItem = await aptos.getTableItem({
                                                                                                                                                                                                handle: "0x1b854694ae746cdbd8d44186ca4929b2b337df21d1c74633be19b2710552fdca",
                                                                                                                                                                                                data: {
                                                                                                                                                                                                key_type: "address", // Move type of table key
                                                                                                                                                                                                value_type: "u128", // Move type of table value
                                                                                                                                                                                                key: "0x619dc29a0aac8fa146714058e8dd6d2d0f3bdf5f6331907bf91f3acd81e6935" // Value of table key
                                                                                                                                                                                                },
                                                                                                                                                                                                });

                                                                                                                                                                                                console.log(tableItem);
                                                                                                                                                                                                }
                                                                                                                                                                                                runExample().catch(console.error); +
                                                                                                                                                                                                + +
                                                                                                                                                                                              • Queries for table items data with optional filtering and pagination. +This function allows you to retrieve specific data from a table based on provided criteria.

                                                                                                                                                                                                +

                                                                                                                                                                                                Parameters

                                                                                                                                                                                                • args: {
                                                                                                                                                                                                      minimumLedgerVersion?: AnyNumber;
                                                                                                                                                                                                      options?: PaginationArgs & WhereArg<TableItemsBoolExp> & OrderByArg<
                                                                                                                                                                                                          {
                                                                                                                                                                                                              decoded_key: any;
                                                                                                                                                                                                              decoded_value?: any;
                                                                                                                                                                                                              key: string;
                                                                                                                                                                                                              table_handle: string;
                                                                                                                                                                                                              transaction_version: any;
                                                                                                                                                                                                              write_set_change_index: any;
                                                                                                                                                                                                          },
                                                                                                                                                                                                      >;
                                                                                                                                                                                                  }

                                                                                                                                                                                                  The arguments for querying table items data.

                                                                                                                                                                                                  +
                                                                                                                                                                                                  • OptionalminimumLedgerVersion?: AnyNumber

                                                                                                                                                                                                    Optional minimum ledger version to wait for before querying.

                                                                                                                                                                                                    +
                                                                                                                                                                                                  • Optionaloptions?: PaginationArgs & WhereArg<TableItemsBoolExp> & OrderByArg<
                                                                                                                                                                                                        {
                                                                                                                                                                                                            decoded_key: any;
                                                                                                                                                                                                            decoded_value?: any;
                                                                                                                                                                                                            key: string;
                                                                                                                                                                                                            table_handle: string;
                                                                                                                                                                                                            transaction_version: any;
                                                                                                                                                                                                            write_set_change_index: any;
                                                                                                                                                                                                        },
                                                                                                                                                                                                    >

                                                                                                                                                                                                    Optional parameters for pagination and filtering.

                                                                                                                                                                                                    +

                                                                                                                                                                                                Returns Promise<
                                                                                                                                                                                                    {
                                                                                                                                                                                                        decoded_key: any;
                                                                                                                                                                                                        decoded_value?: any;
                                                                                                                                                                                                        key: string;
                                                                                                                                                                                                        table_handle: string;
                                                                                                                                                                                                        transaction_version: any;
                                                                                                                                                                                                        write_set_change_index: any;
                                                                                                                                                                                                    }[],
                                                                                                                                                                                                >

                                                                                                                                                                                                GetTableItemsDataResponse

                                                                                                                                                                                                +
                                                                                                                                                                                                import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                                const aptos = new Aptos(config);

                                                                                                                                                                                                async function runExample() {
                                                                                                                                                                                                // Retrieve table items data with specific filtering options
                                                                                                                                                                                                const data = await aptos.getTableItemsData({
                                                                                                                                                                                                minimumLedgerVersion: 1, // specify your own minimum ledger version if needed
                                                                                                                                                                                                options: {
                                                                                                                                                                                                where: {
                                                                                                                                                                                                table_handle: { _eq: "0x1b854694ae746cdbd8d44186ca4929b2b337df21d1c74633be19b2710552fdca" },
                                                                                                                                                                                                transaction_version: { _eq: "0" }
                                                                                                                                                                                                },
                                                                                                                                                                                                limit: 10, // specify your own limit if needed
                                                                                                                                                                                                },
                                                                                                                                                                                                });

                                                                                                                                                                                                console.log(data);
                                                                                                                                                                                                }
                                                                                                                                                                                                runExample().catch(console.error); +
                                                                                                                                                                                                + +
                                                                                                                                                                                              • Queries for the metadata of table items, allowing for filtering and pagination.

                                                                                                                                                                                                +

                                                                                                                                                                                                Parameters

                                                                                                                                                                                                Returns Promise<{ handle: string; key_type: string; value_type: string }[]>

                                                                                                                                                                                                GetTableItemsMetadataResponse

                                                                                                                                                                                                +
                                                                                                                                                                                                import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                                const aptos = new Aptos(config);

                                                                                                                                                                                                async function runExample() {
                                                                                                                                                                                                // Fetching table items metadata with a filter condition
                                                                                                                                                                                                const data = await aptos.getTableItemsMetadata({
                                                                                                                                                                                                minimumLedgerVersion: 1, // specify your own minimum ledger version if needed
                                                                                                                                                                                                options: {
                                                                                                                                                                                                where: { handle: { _eq: "0x1b854694ae746cdbd8d44186ca4929b2b337df21d1c74633be19b2710552fdca" } },
                                                                                                                                                                                                limit: 10, // specify your own limit if needed
                                                                                                                                                                                                },
                                                                                                                                                                                                });

                                                                                                                                                                                                console.log(data);
                                                                                                                                                                                                }
                                                                                                                                                                                                runExample().catch(console.error); +
                                                                                                                                                                                                + +
                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Transaction.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Transaction.html new file mode 100644 index 000000000..652e2d8f4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.Transaction.html @@ -0,0 +1,202 @@ +Transaction | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                Class Transaction

                                                                                                                                                                                                Represents a transaction in the Aptos blockchain, +providing methods to build, simulate, submit, and manage transactions. +This class encapsulates functionalities for querying transaction details, +estimating gas prices, signing transactions, and handling transaction states.

                                                                                                                                                                                                +

                                                                                                                                                                                                This class is used as part of the Aptos object, so should be called like so:

                                                                                                                                                                                                +
                                                                                                                                                                                                import { Account, Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                const APTOS_COIN = "0x1::aptos_coin::AptosCoin";
                                                                                                                                                                                                const COIN_STORE = `0x1::coin::CoinStore<${APTOS_COIN}>`;
                                                                                                                                                                                                const ALICE_INITIAL_BALANCE = 100_000_000;
                                                                                                                                                                                                const TRANSFER_AMOUNT = 100;

                                                                                                                                                                                                async function example() {
                                                                                                                                                                                                console.log(
                                                                                                                                                                                                "This example will create two accounts (Alice and Bob), fund them, and transfer between them.",
                                                                                                                                                                                                );

                                                                                                                                                                                                // Set up the client
                                                                                                                                                                                                const config = new AptosConfig({ network: Network.DEVNET });
                                                                                                                                                                                                const aptos = new Aptos(config);

                                                                                                                                                                                                // Generate two account credentials
                                                                                                                                                                                                // Each account has a private key, a public key, and an address
                                                                                                                                                                                                const alice = Account.generate();
                                                                                                                                                                                                const bob = Account.generate();

                                                                                                                                                                                                console.log("=== Addresses ===\n");
                                                                                                                                                                                                console.log(`Alice's address is: ${alice.accountAddress}`);
                                                                                                                                                                                                console.log(`Bob's address is: ${bob.accountAddress}`);

                                                                                                                                                                                                // Fund the accounts using a faucet
                                                                                                                                                                                                console.log("\n=== Funding accounts ===\n");

                                                                                                                                                                                                await aptos.fundAccount({
                                                                                                                                                                                                accountAddress: alice.accountAddress,
                                                                                                                                                                                                amount: ALICE_INITIAL_BALANCE,
                                                                                                                                                                                                });

                                                                                                                                                                                                // Send a transaction from Alice's account to Bob's account
                                                                                                                                                                                                const txn = await aptos.transaction.build.simple({
                                                                                                                                                                                                sender: alice.accountAddress,
                                                                                                                                                                                                data: {
                                                                                                                                                                                                // All transactions on Aptos are implemented via smart contracts.
                                                                                                                                                                                                function: "0x1::aptos_account::transfer",
                                                                                                                                                                                                functionArguments: [bob.accountAddress, 100],
                                                                                                                                                                                                },
                                                                                                                                                                                                });

                                                                                                                                                                                                console.log("\n=== Transfer transaction ===\n");
                                                                                                                                                                                                // Both signs and submits
                                                                                                                                                                                                const committedTxn = await aptos.signAndSubmitTransaction({
                                                                                                                                                                                                signer: alice,
                                                                                                                                                                                                transaction: txn,
                                                                                                                                                                                                });
                                                                                                                                                                                                // Waits for Aptos to verify and execute the transaction
                                                                                                                                                                                                const executedTransaction = await aptos.waitForTransaction({
                                                                                                                                                                                                transactionHash: committedTxn.hash,
                                                                                                                                                                                                });
                                                                                                                                                                                                console.log("Transaction hash:", executedTransaction.hash);

                                                                                                                                                                                                console.log("\n=== Balances after transfer ===\n");
                                                                                                                                                                                                const newAliceAccountBalance = await aptos.getAccountResource({
                                                                                                                                                                                                accountAddress: alice.accountAddress,
                                                                                                                                                                                                resourceType: COIN_STORE,
                                                                                                                                                                                                });
                                                                                                                                                                                                const newAliceBalance = Number(newAliceAccountBalance.coin.value);
                                                                                                                                                                                                console.log(`Alice's balance is: ${newAliceBalance}`);

                                                                                                                                                                                                const newBobAccountBalance = await aptos.getAccountResource({
                                                                                                                                                                                                accountAddress: bob.accountAddress,
                                                                                                                                                                                                resourceType: COIN_STORE,
                                                                                                                                                                                                });
                                                                                                                                                                                                const newBobBalance = Number(newBobAccountBalance.coin.value);
                                                                                                                                                                                                console.log(`Bob's balance is: ${newBobBalance}`);
                                                                                                                                                                                                }

                                                                                                                                                                                                example(); +
                                                                                                                                                                                                + +
                                                                                                                                                                                                Index

                                                                                                                                                                                                Properties

                                                                                                                                                                                                build: Build
                                                                                                                                                                                                config: AptosConfig
                                                                                                                                                                                                simulate: Simulate
                                                                                                                                                                                                submit: Submit

                                                                                                                                                                                                Transaction

                                                                                                                                                                                                • Creates an instance of the Aptos client with the specified configuration. +This allows you to interact with the Aptos blockchain using the provided settings.

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                  • config: AptosConfig

                                                                                                                                                                                                    The configuration settings for the Aptos client.

                                                                                                                                                                                                    +

                                                                                                                                                                                                  Returns Transaction

                                                                                                                                                                                                  import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                  async function runExample() {
                                                                                                                                                                                                  // Create a new Aptos client instance
                                                                                                                                                                                                  const config = new AptosConfig({ network: Network.TESTNET }); // Specify the network
                                                                                                                                                                                                  const aptos = new Aptos(config);

                                                                                                                                                                                                  console.log("Aptos client created successfully:", aptos);
                                                                                                                                                                                                  }
                                                                                                                                                                                                  runExample().catch(console.error); +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                • Parameters

                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                  Prefer to use aptos.transaction.batch.forSingleAccount()

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Batch transactions for a single account by submitting multiple transaction payloads. +This function is useful for efficiently processing and submitting transactions that do not depend on each other, such as +batch funding or batch token minting.

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Error if any worker failure occurs during submission.

                                                                                                                                                                                                  +
                                                                                                                                                                                                  import { Aptos, AptosConfig, Network, Account } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                  const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                                  const aptos = new Aptos(config);
                                                                                                                                                                                                  const sender = Account.generate(); // Generate a new account for sending transactions

                                                                                                                                                                                                  async function runExample() {
                                                                                                                                                                                                  const transactions = [
                                                                                                                                                                                                  { }, // Build your first transaction payload
                                                                                                                                                                                                  { }, // Build your second transaction payload
                                                                                                                                                                                                  ];

                                                                                                                                                                                                  // Batch transactions for the single account
                                                                                                                                                                                                  await aptos.batchTransactionsForSingleAccount({
                                                                                                                                                                                                  sender,
                                                                                                                                                                                                  data: transactions,
                                                                                                                                                                                                  });

                                                                                                                                                                                                  console.log("Batch transactions submitted successfully.");
                                                                                                                                                                                                  }
                                                                                                                                                                                                  runExample().catch(console.error); +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                • Estimates the gas unit price required to process a transaction on the Aptos blockchain in a timely manner. +This helps users to understand the cost associated with their transactions. +https://api.mainnet.aptoslabs.com/v1/spec#/operations/estimate_gas_price

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Returns Promise<GasEstimation>

                                                                                                                                                                                                  An object containing the estimated gas price.

                                                                                                                                                                                                  +
                                                                                                                                                                                                  import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                  const config = new AptosConfig({ network: Network.TESTNET }); // Specify your network
                                                                                                                                                                                                  const aptos = new Aptos(config);

                                                                                                                                                                                                  async function runExample() {
                                                                                                                                                                                                  // Getting the gas price estimation
                                                                                                                                                                                                  const gasPriceEstimation = await aptos.getGasPriceEstimation();

                                                                                                                                                                                                  console.log("Estimated Gas Price:", gasPriceEstimation);
                                                                                                                                                                                                  }
                                                                                                                                                                                                  runExample().catch(console.error); +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                • Returns a signing message for a transaction, allowing a user to sign it using their preferred method before submission to the network.

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                  Returns Uint8Array

                                                                                                                                                                                                  import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                  const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                                  const aptos = new Aptos(config);

                                                                                                                                                                                                  async function runExample() {
                                                                                                                                                                                                  const transaction = await aptos.transaction.build.simple({
                                                                                                                                                                                                  sender: "0x1", // replace with a real sender address
                                                                                                                                                                                                  data: {
                                                                                                                                                                                                  function: "0x1::aptos_account::transfer",
                                                                                                                                                                                                  functionArguments: ["0x2", 100], // replace with a real destination address
                                                                                                                                                                                                  },
                                                                                                                                                                                                  });

                                                                                                                                                                                                  const message = await aptos.getSigningMessage({ transaction });
                                                                                                                                                                                                  console.log(message);
                                                                                                                                                                                                  }
                                                                                                                                                                                                  runExample().catch(console.error); +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                • Queries on-chain transactions by their transaction hash, returning both pending and committed transactions.

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                  • args: { transactionHash: HexInput }

                                                                                                                                                                                                    The arguments for querying the transaction.

                                                                                                                                                                                                    +
                                                                                                                                                                                                    • transactionHash: HexInput

                                                                                                                                                                                                      The transaction hash should be a hex-encoded bytes string with a 0x prefix.

                                                                                                                                                                                                      +

                                                                                                                                                                                                  Returns Promise<TransactionResponse>

                                                                                                                                                                                                  The transaction from the mempool (pending) or the on-chain (committed) transaction.

                                                                                                                                                                                                  +
                                                                                                                                                                                                  import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                  const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                                  const aptos = new Aptos(config);

                                                                                                                                                                                                  async function runExample() {
                                                                                                                                                                                                  // Fetch a transaction by its hash
                                                                                                                                                                                                  const transaction = await aptos.getTransactionByHash({ transactionHash: "0x123" }); // replace with a real transaction hash

                                                                                                                                                                                                  console.log(transaction);
                                                                                                                                                                                                  }
                                                                                                                                                                                                  runExample().catch(console.error); +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                • Queries on-chain transaction by version. This function will not return pending transactions.

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                  • args: { ledgerVersion: AnyNumber }

                                                                                                                                                                                                    The arguments for querying the transaction.

                                                                                                                                                                                                    +
                                                                                                                                                                                                    • ledgerVersion: AnyNumber

                                                                                                                                                                                                      Transaction version is an unsigned 64-bit number.

                                                                                                                                                                                                      +

                                                                                                                                                                                                  Returns Promise<TransactionResponse>

                                                                                                                                                                                                  On-chain transaction. Only on-chain transactions have versions, so this +function cannot be used to query pending transactions.

                                                                                                                                                                                                  +
                                                                                                                                                                                                  import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                  const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                                  const aptos = new Aptos(config);

                                                                                                                                                                                                  async function runExample() {
                                                                                                                                                                                                  // Fetching a transaction by its version
                                                                                                                                                                                                  const transaction = await aptos.getTransactionByVersion({ ledgerVersion: 1 }); // replace 1 with a real version
                                                                                                                                                                                                  console.log(transaction);
                                                                                                                                                                                                  }
                                                                                                                                                                                                  runExample().catch(console.error); +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                • Queries on-chain transactions, excluding pending transactions. +Use this function to retrieve historical transactions from the blockchain.

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                  • Optionalargs: { options?: PaginationArgs }

                                                                                                                                                                                                    Optional parameters for pagination.

                                                                                                                                                                                                    +

                                                                                                                                                                                                  Returns Promise<TransactionResponse[]>

                                                                                                                                                                                                  An array of on-chain transactions.

                                                                                                                                                                                                  +
                                                                                                                                                                                                  import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                  const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                                  const aptos = new Aptos(config);

                                                                                                                                                                                                  async function runExample() {
                                                                                                                                                                                                  // Fetch transactions with pagination
                                                                                                                                                                                                  const transactions = await aptos.getTransactions({
                                                                                                                                                                                                  options: {
                                                                                                                                                                                                  offset: 0, // Start from the first transaction
                                                                                                                                                                                                  limit: 10, // Limit to 10 results
                                                                                                                                                                                                  },
                                                                                                                                                                                                  });

                                                                                                                                                                                                  console.log(transactions);
                                                                                                                                                                                                  }
                                                                                                                                                                                                  runExample().catch(console.error); +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                • Defines if the specified transaction is currently in a pending state. +This function helps you determine the status of a transaction using its hash.

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                  • args: { transactionHash: HexInput }

                                                                                                                                                                                                    The arguments for the function.

                                                                                                                                                                                                    +
                                                                                                                                                                                                    • transactionHash: HexInput

                                                                                                                                                                                                      A hash of the transaction in hexadecimal format.

                                                                                                                                                                                                      +

                                                                                                                                                                                                  Returns Promise<boolean>

                                                                                                                                                                                                  true if the transaction is in a pending state and false otherwise.

                                                                                                                                                                                                  +
                                                                                                                                                                                                  import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                  const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                                  const aptos = new Aptos(config);

                                                                                                                                                                                                  async function runExample() {
                                                                                                                                                                                                  // Check if the transaction is pending using its hash
                                                                                                                                                                                                  const isPendingTransaction = await aptos.isPendingTransaction({ transactionHash: "0x123" }); // replace with a real transaction hash
                                                                                                                                                                                                  console.log("Is the transaction pending?", isPendingTransaction);
                                                                                                                                                                                                  }
                                                                                                                                                                                                  runExample().catch(console.error); +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                • Generates a transaction to publish a Move package to the blockchain. +This function helps you create a transaction that can be simulated or submitted to the chain for publishing a package.

                                                                                                                                                                                                  +

                                                                                                                                                                                                  To get the metadataBytes and byteCode, can compile using Aptos CLI with command +aptos move compile --save-metadata ...,

                                                                                                                                                                                                  +

                                                                                                                                                                                                  https://aptos.dev/tutorials/your-first-dapp/#step-4-publish-a-move-module

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                  Returns Promise<SimpleTransaction>

                                                                                                                                                                                                  A SimpleTransaction that can be simulated or submitted to the chain.

                                                                                                                                                                                                  +
                                                                                                                                                                                                  import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                  const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                                  const aptos = new Aptos(config);

                                                                                                                                                                                                  async function runExample() {
                                                                                                                                                                                                  // Replace with a real account address
                                                                                                                                                                                                  const account = "0x1";
                                                                                                                                                                                                  const metadataBytes = "0x..."; // replace with real metadata bytes
                                                                                                                                                                                                  const byteCode = "0x..."; // replace with real module bytecode

                                                                                                                                                                                                  const transaction = await aptos.publishPackageTransaction({
                                                                                                                                                                                                  account,
                                                                                                                                                                                                  metadataBytes,
                                                                                                                                                                                                  moduleBytecode: [byteCode],
                                                                                                                                                                                                  });

                                                                                                                                                                                                  console.log(transaction);
                                                                                                                                                                                                  }
                                                                                                                                                                                                  runExample().catch(console.error); +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                • Rotates the authentication key for a given account. Once an account is rotated, only the new private key +or keyless signing scheme can be used to sign transactions for the account.

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                  Returns Promise<SimpleTransaction>

                                                                                                                                                                                                  SimpleTransaction that can be submitted to rotate the auth key

                                                                                                                                                                                                  +

                                                                                                                                                                                                  This function supports three modes of rotation:

                                                                                                                                                                                                  +
                                                                                                                                                                                                    +
                                                                                                                                                                                                  1. Using a target Account object (toAccount)
                                                                                                                                                                                                  2. +
                                                                                                                                                                                                  3. Using a new private key (toNewPrivateKey)
                                                                                                                                                                                                  4. +
                                                                                                                                                                                                  +

                                                                                                                                                                                                  For Ed25519 accounts, the function will use a challenge-based rotation that requires signatures from both the old and new keys. +For multi-key accounts like MultiEd25519Account, the function will use a challenge-based rotation that requires signatures from both keys. +For other account types, the function will use an unverified rotation that only requires the new public key.

                                                                                                                                                                                                  +
                                                                                                                                                                                                  // Create and submit transaction to rotate the auth key
                                                                                                                                                                                                  const transaction = await aptos.rotateAuthKey({
                                                                                                                                                                                                  fromAccount,
                                                                                                                                                                                                  toAccount: toAccount,
                                                                                                                                                                                                  });

                                                                                                                                                                                                  // Sign and submit the transaction
                                                                                                                                                                                                  const pendingTransaction = await aptos.signAndSubmitTransaction({
                                                                                                                                                                                                  signer: fromAccount,
                                                                                                                                                                                                  transaction,
                                                                                                                                                                                                  }); +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                • Rotates the authentication key for a given account without verifying the new key.

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Accounts with their auth key rotated via this function will be derivable via the getAccountsForPublicKey and +deriveOwnedAccountsFromSigner functions however the public key will be unverified (no proof of ownership). Thus +includeUnverified must be set to true to derive the account until the public key is verified via signing a transaction.

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                  Returns Promise<SimpleTransaction>

                                                                                                                                                                                                  A simple transaction object that can be submitted to the network.

                                                                                                                                                                                                  +
                                                                                                                                                                                                  // Create and submit transaction to rotate the auth key
                                                                                                                                                                                                  const transaction = await aptos.rotateAuthKeyUnverified({
                                                                                                                                                                                                  fromAccount,
                                                                                                                                                                                                  toNewPublicKey,
                                                                                                                                                                                                  });

                                                                                                                                                                                                  // Sign and submit the transaction
                                                                                                                                                                                                  const pendingTransaction = await aptos.signAndSubmitTransaction({
                                                                                                                                                                                                  signer: fromAccount,
                                                                                                                                                                                                  transaction,
                                                                                                                                                                                                  }); +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                • Sign a transaction that can later be submitted to the chain. +This function is essential for ensuring the authenticity of the transaction by using the provided account's signing capabilities.

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                  Returns AccountAuthenticator

                                                                                                                                                                                                  AccountAuthenticator - The authenticator for the signed transaction.

                                                                                                                                                                                                  +
                                                                                                                                                                                                  import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                  const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                                  const aptos = new Aptos(config);

                                                                                                                                                                                                  async function runExample() {
                                                                                                                                                                                                  const sender = Account.generate(); // Generate a new account for signing
                                                                                                                                                                                                  const transaction = await aptos.transaction.build.simple({
                                                                                                                                                                                                  sender: sender.accountAddress,
                                                                                                                                                                                                  data: {
                                                                                                                                                                                                  function: "0x1::aptos_account::transfer",
                                                                                                                                                                                                  functionArguments: [ "0x1", 100 ], // replace with a real account address and amount
                                                                                                                                                                                                  },
                                                                                                                                                                                                  });

                                                                                                                                                                                                  const signedTransaction = await aptos.transaction.sign({
                                                                                                                                                                                                  signer: sender,
                                                                                                                                                                                                  transaction,
                                                                                                                                                                                                  }); // Sign the transaction

                                                                                                                                                                                                  console.log("Signed Transaction:", signedTransaction);
                                                                                                                                                                                                  }
                                                                                                                                                                                                  runExample().catch(console.error); +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                • Sign and submit a single signer transaction to the blockchain. +This function allows you to execute a transaction after signing it with the specified account.

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                  Returns Promise<PendingTransactionResponse>

                                                                                                                                                                                                  PendingTransactionResponse

                                                                                                                                                                                                  +
                                                                                                                                                                                                  import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                  const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                                  const aptos = new Aptos(config);

                                                                                                                                                                                                  async function runExample() {
                                                                                                                                                                                                  const sender = Account.generate(); // Generate a new account for sending the transaction
                                                                                                                                                                                                  const transaction = await aptos.transaction.build.simple({
                                                                                                                                                                                                  sender: sender.accountAddress,
                                                                                                                                                                                                  data: {
                                                                                                                                                                                                  function: "0x1::aptos_account::transfer",
                                                                                                                                                                                                  functionArguments: [ "0x1", 100 ], // replace with a real account address
                                                                                                                                                                                                  },
                                                                                                                                                                                                  });

                                                                                                                                                                                                  // Sign and submit the transaction
                                                                                                                                                                                                  const pendingTransaction = await aptos.signAndSubmitTransaction({
                                                                                                                                                                                                  signer: sender,
                                                                                                                                                                                                  transaction,
                                                                                                                                                                                                  });

                                                                                                                                                                                                  console.log(pendingTransaction);
                                                                                                                                                                                                  }
                                                                                                                                                                                                  runExample().catch(console.error); +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                • Sign a transaction as a fee payer that can later be submitted to the chain. +This function ensures that the transaction is marked with the fee payer's address, allowing it to be processed correctly.

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                  • args: { signer: Account; transaction: AnyRawTransaction }

                                                                                                                                                                                                    The arguments for signing the transaction.

                                                                                                                                                                                                    +
                                                                                                                                                                                                    • signer: Account

                                                                                                                                                                                                      The fee payer signer account.

                                                                                                                                                                                                      +
                                                                                                                                                                                                    • transaction: AnyRawTransaction

                                                                                                                                                                                                      A raw transaction to sign on. This transaction must include a feePayerAddress property.

                                                                                                                                                                                                      +

                                                                                                                                                                                                  Returns AccountAuthenticator

                                                                                                                                                                                                  AccountAuthenticator - The authenticator for the signed transaction.

                                                                                                                                                                                                  +
                                                                                                                                                                                                  import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                  const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                                  const aptos = new Aptos(config);

                                                                                                                                                                                                  async function runExample() {
                                                                                                                                                                                                  const sender = Account.generate(); // Generate a new account for the fee payer
                                                                                                                                                                                                  const transaction = await aptos.transaction.build.simple({
                                                                                                                                                                                                  // All transactions on Aptos are implemented via smart contracts.
                                                                                                                                                                                                  function: "0x1::aptos_account::transfer",
                                                                                                                                                                                                  functionArguments: [sender.accountAddress, 100],
                                                                                                                                                                                                  feePayerAddress: sender.accountAddress, // Set the fee payer address
                                                                                                                                                                                                  });

                                                                                                                                                                                                  const signedTransaction = await aptos.transaction.signAsFeePayer({
                                                                                                                                                                                                  signer: sender,
                                                                                                                                                                                                  transaction,
                                                                                                                                                                                                  });

                                                                                                                                                                                                  console.log("Signed transaction as fee payer:", signedTransaction);
                                                                                                                                                                                                  }
                                                                                                                                                                                                  runExample().catch(console.error); +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                • Waits for a transaction to move past the pending state and provides the transaction response. +There are 4 cases.

                                                                                                                                                                                                  +
                                                                                                                                                                                                    +
                                                                                                                                                                                                  1. Transaction is successfully processed and committed to the chain. +
                                                                                                                                                                                                      +
                                                                                                                                                                                                    • The function will resolve with the transaction response from the API.
                                                                                                                                                                                                    • +
                                                                                                                                                                                                    +
                                                                                                                                                                                                  2. +
                                                                                                                                                                                                  3. Transaction is rejected for some reason, and is therefore not committed to the blockchain. +
                                                                                                                                                                                                      +
                                                                                                                                                                                                    • The function will throw an AptosApiError with an HTTP status code indicating some problem with the request.
                                                                                                                                                                                                    • +
                                                                                                                                                                                                    +
                                                                                                                                                                                                  4. +
                                                                                                                                                                                                  5. Transaction is committed but execution failed, meaning no changes were +written to the blockchain state. +
                                                                                                                                                                                                      +
                                                                                                                                                                                                    • If checkSuccess is true, the function will throw a FailedTransactionError +If checkSuccess is false, the function will resolve with the transaction response where the success field is false.
                                                                                                                                                                                                    • +
                                                                                                                                                                                                    +
                                                                                                                                                                                                  6. +
                                                                                                                                                                                                  7. Transaction does not move past the pending state within args.options.timeoutSecs seconds. +
                                                                                                                                                                                                      +
                                                                                                                                                                                                    • The function will throw a WaitForTransactionError
                                                                                                                                                                                                    • +
                                                                                                                                                                                                    +
                                                                                                                                                                                                  8. +
                                                                                                                                                                                                  +

                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                  Returns Promise<CommittedTransactionResponse>

                                                                                                                                                                                                  The transaction on-chain response.

                                                                                                                                                                                                  +
                                                                                                                                                                                                  import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                  const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                                  const aptos = new Aptos(config);

                                                                                                                                                                                                  async function runExample() {
                                                                                                                                                                                                  // Wait for a transaction to complete using its hash
                                                                                                                                                                                                  const transactionHash = "0x123"; // replace with a real transaction hash
                                                                                                                                                                                                  const transactionResponse = await aptos.waitForTransaction({
                                                                                                                                                                                                  transactionHash,
                                                                                                                                                                                                  options: {
                                                                                                                                                                                                  timeoutSecs: 30, // specify your own timeout if needed
                                                                                                                                                                                                  checkSuccess: true,
                                                                                                                                                                                                  },
                                                                                                                                                                                                  });

                                                                                                                                                                                                  console.log(transactionResponse);
                                                                                                                                                                                                  }
                                                                                                                                                                                                  runExample().catch(console.error); +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.TransactionManagement.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.TransactionManagement.html new file mode 100644 index 000000000..b309dcac2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateCode.TransactionManagement.html @@ -0,0 +1,44 @@ +TransactionManagement | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                  Class TransactionManagement

                                                                                                                                                                                                  Minimal EventEmitter interface that is molded against the Node.js +EventEmitter interface.

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                  Index

                                                                                                                                                                                                  Implementation

                                                                                                                                                                                                  • Initializes a new instance of the Aptos client with the provided configuration settings. +This allows you to interact with the Aptos blockchain using the specified network and options.

                                                                                                                                                                                                    +

                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                    • config: AptosConfig

                                                                                                                                                                                                      The configuration settings for the Aptos client.

                                                                                                                                                                                                      +

                                                                                                                                                                                                    Returns TransactionManagement

                                                                                                                                                                                                    import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                    async function runExample() {
                                                                                                                                                                                                    // Create a configuration for the Aptos client
                                                                                                                                                                                                    const config = new AptosConfig({
                                                                                                                                                                                                    network: Network.TESTNET, // specify the network to use
                                                                                                                                                                                                    nodeUrl: "https://testnet.aptos.dev" // replace with your node URL
                                                                                                                                                                                                    });

                                                                                                                                                                                                    // Initialize the Aptos client with the configuration
                                                                                                                                                                                                    const aptos = new Aptos(config);

                                                                                                                                                                                                    console.log("Aptos client initialized successfully.");
                                                                                                                                                                                                    }
                                                                                                                                                                                                    runExample().catch(console.error); +
                                                                                                                                                                                                    + +

                                                                                                                                                                                                  Methods

                                                                                                                                                                                                  • Remove all listeners, or those of the specified event.

                                                                                                                                                                                                    +

                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                    • Optionalevent: keyof TransactionWorkerEvents

                                                                                                                                                                                                    Returns this

                                                                                                                                                                                                  Properties

                                                                                                                                                                                                  account: Account
                                                                                                                                                                                                  config: AptosConfig
                                                                                                                                                                                                  transactionWorker: TransactionWorker
                                                                                                                                                                                                  prefixed: string | boolean
                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateKey.html new file mode 100644 index 000000000..734123918 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PrivateKey.html @@ -0,0 +1,23 @@ +PrivateKey | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                    Class PrivateKey

                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                    Implemented by

                                                                                                                                                                                                    Index

                                                                                                                                                                                                    Implementation - Serialization

                                                                                                                                                                                                    Constructors

                                                                                                                                                                                                    Methods

                                                                                                                                                                                                    Properties

                                                                                                                                                                                                    Implementation - Serialization

                                                                                                                                                                                                    Constructors

                                                                                                                                                                                                    Methods

                                                                                                                                                                                                    Properties

                                                                                                                                                                                                    AIP80_PREFIXES: { ed25519: string; secp256k1: string; secp256r1: string } = ...

                                                                                                                                                                                                    The AIP-80 compliant prefixes for each private key type. Append this to a private key's hex representation +to get an AIP-80 compliant string.

                                                                                                                                                                                                    +

                                                                                                                                                                                                    Read about AIP-80

                                                                                                                                                                                                    +
                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/PublicKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PublicKey.html new file mode 100644 index 000000000..bb219ff29 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/PublicKey.html @@ -0,0 +1,27 @@ +PublicKey | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                      Class PublicKeyAbstract

                                                                                                                                                                                                      Represents an abstract public key.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      This class provides a common interface for verifying signatures associated with the public key. +It allows for the retrieval of the raw public key bytes and the public key in a hexadecimal string format.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                      Index

                                                                                                                                                                                                      Implementation - BCS

                                                                                                                                                                                                      Implementation - Serialization

                                                                                                                                                                                                      Constructors

                                                                                                                                                                                                      Methods

                                                                                                                                                                                                      Implementation - BCS

                                                                                                                                                                                                      • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                        +

                                                                                                                                                                                                        Returns Uint8Array

                                                                                                                                                                                                        the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                        +
                                                                                                                                                                                                      • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                        +

                                                                                                                                                                                                        Returns Hex

                                                                                                                                                                                                        A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                        +

                                                                                                                                                                                                      Implementation - Serialization

                                                                                                                                                                                                      Constructors

                                                                                                                                                                                                      Methods

                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/RawTransaction.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/RawTransaction.html new file mode 100644 index 000000000..ef4cc5985 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/RawTransaction.html @@ -0,0 +1,47 @@ +RawTransaction | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                        Class RawTransaction

                                                                                                                                                                                                        Represents a raw transaction that can be serialized and deserialized. +Raw transactions contain the metadata and payloads that can be submitted to the Aptos chain for execution. +They must be signed before the Aptos chain can execute them.

                                                                                                                                                                                                        +

                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                        Index

                                                                                                                                                                                                        Implementation - BCS

                                                                                                                                                                                                        • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                          +

                                                                                                                                                                                                          Returns Uint8Array

                                                                                                                                                                                                          the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                          +
                                                                                                                                                                                                        • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                          +

                                                                                                                                                                                                          Returns Hex

                                                                                                                                                                                                          A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                          +

                                                                                                                                                                                                        Implementation - Transactions

                                                                                                                                                                                                        • RawTransactions contain the metadata and payloads that can be submitted to Aptos chain for execution. +RawTransactions must be signed before Aptos chain can execute them.

                                                                                                                                                                                                          +

                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                          • sender: AccountAddress

                                                                                                                                                                                                            The sender Account Address

                                                                                                                                                                                                            +
                                                                                                                                                                                                          • sequence_number: bigint

                                                                                                                                                                                                            Sequence number of this transaction. This must match the sequence number stored in +the sender's account at the time the transaction executes.

                                                                                                                                                                                                            +
                                                                                                                                                                                                          • payload: TransactionPayload

                                                                                                                                                                                                            Instructions for the Aptos Blockchain, including publishing a module, +execute an entry function or execute a script payload.

                                                                                                                                                                                                            +
                                                                                                                                                                                                          • max_gas_amount: bigint

                                                                                                                                                                                                            Maximum total gas to spend for this transaction. The account must have more +than this gas or the transaction will be discarded during validation.

                                                                                                                                                                                                            +
                                                                                                                                                                                                          • gas_unit_price: bigint

                                                                                                                                                                                                            Price to be paid per gas unit.

                                                                                                                                                                                                            +
                                                                                                                                                                                                          • expiration_timestamp_secs: bigint

                                                                                                                                                                                                            The blockchain timestamp at which the blockchain would discard this transaction.

                                                                                                                                                                                                            +
                                                                                                                                                                                                          • chain_id: ChainId

                                                                                                                                                                                                            The chain ID of the blockchain that this transaction is intended to be run on.

                                                                                                                                                                                                            +

                                                                                                                                                                                                          Returns RawTransaction

                                                                                                                                                                                                        • Serializes the transaction data, including the fee payer transaction type, raw transaction, secondary signer addresses, +and fee payer address. +This function is essential for preparing the transaction for transmission or storage in a serialized format.

                                                                                                                                                                                                          +

                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                          • serializer: Serializer

                                                                                                                                                                                                            The serializer instance used to serialize the transaction data.

                                                                                                                                                                                                            +

                                                                                                                                                                                                          Returns void

                                                                                                                                                                                                        Methods

                                                                                                                                                                                                        • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                          +

                                                                                                                                                                                                          Returns string

                                                                                                                                                                                                          the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                          +

                                                                                                                                                                                                        Properties

                                                                                                                                                                                                        chain_id: ChainId
                                                                                                                                                                                                        expiration_timestamp_secs: bigint
                                                                                                                                                                                                        gas_unit_price: bigint
                                                                                                                                                                                                        max_gas_amount: bigint
                                                                                                                                                                                                        sequence_number: bigint
                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/RawTransactionWithData.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/RawTransactionWithData.html new file mode 100644 index 000000000..6c45f0798 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/RawTransactionWithData.html @@ -0,0 +1,21 @@ +RawTransactionWithData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                          Class RawTransactionWithDataAbstract

                                                                                                                                                                                                          Represents a raw transaction with associated data that can be serialized and deserialized.

                                                                                                                                                                                                          +

                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                          Index

                                                                                                                                                                                                          Implementation - BCS

                                                                                                                                                                                                          Implementation - Transactions

                                                                                                                                                                                                          Constructors

                                                                                                                                                                                                          Methods

                                                                                                                                                                                                          Implementation - BCS

                                                                                                                                                                                                          • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                            +

                                                                                                                                                                                                            Returns Uint8Array

                                                                                                                                                                                                            the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                            +
                                                                                                                                                                                                          • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                            +

                                                                                                                                                                                                            Returns Hex

                                                                                                                                                                                                            A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                            +

                                                                                                                                                                                                          Implementation - Transactions

                                                                                                                                                                                                          Constructors

                                                                                                                                                                                                          Methods

                                                                                                                                                                                                          • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                            +

                                                                                                                                                                                                            Returns string

                                                                                                                                                                                                            the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                            +
                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/RotationProofChallenge.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/RotationProofChallenge.html new file mode 100644 index 000000000..e91c5f9de --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/RotationProofChallenge.html @@ -0,0 +1,35 @@ +RotationProofChallenge | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                            Class RotationProofChallenge

                                                                                                                                                                                                            Represents a challenge required for the account owner to sign in order to rotate the authentication key.

                                                                                                                                                                                                            +

                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                            Index

                                                                                                                                                                                                            Implementation - BCS

                                                                                                                                                                                                            • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                              +

                                                                                                                                                                                                              Returns Uint8Array

                                                                                                                                                                                                              the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                              +
                                                                                                                                                                                                            • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                              +

                                                                                                                                                                                                              Returns Hex

                                                                                                                                                                                                              A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                              +

                                                                                                                                                                                                            Implementation - Transactions

                                                                                                                                                                                                            Methods

                                                                                                                                                                                                            • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                              +

                                                                                                                                                                                                              Returns string

                                                                                                                                                                                                              the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                              +

                                                                                                                                                                                                            Properties

                                                                                                                                                                                                            accountAddress: AccountAddress = AccountAddress.ONE
                                                                                                                                                                                                            currentAuthKey: AccountAddress
                                                                                                                                                                                                            moduleName: MoveString = ...
                                                                                                                                                                                                            newPublicKey: MoveVector<U8>
                                                                                                                                                                                                            originator: AccountAddress
                                                                                                                                                                                                            sequenceNumber: U64
                                                                                                                                                                                                            structName: MoveString = ...
                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Script.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Script.html new file mode 100644 index 000000000..513843fdb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Script.html @@ -0,0 +1,24 @@ +Script | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                              Class Script

                                                                                                                                                                                                              Represents a Script that can be serialized and deserialized. +Scripts contain the Move bytecode payload that can be submitted to the Aptos chain for execution.

                                                                                                                                                                                                              +
                                                                                                                                                                                                              Index

                                                                                                                                                                                                              Implementation - Transactions

                                                                                                                                                                                                              Methods

                                                                                                                                                                                                              Implementation - Transactions

                                                                                                                                                                                                              • Scripts contain the Move bytecodes payload that can be submitted to Aptos chain for execution.

                                                                                                                                                                                                                +

                                                                                                                                                                                                                Parameters

                                                                                                                                                                                                                • bytecode: Uint8Array

                                                                                                                                                                                                                  The move module bytecode

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                • type_args: TypeTag[]

                                                                                                                                                                                                                  The type arguments that the bytecode function requires.

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                • args: ScriptFunctionArgument[]

                                                                                                                                                                                                                  The arguments that the bytecode function requires.

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                Returns Script

                                                                                                                                                                                                                A coin transfer function has one type argument "CoinType".

                                                                                                                                                                                                                +
                                                                                                                                                                                                                public(script) fun transfer<CoinType>(from: &signer, to: address, amount: u64)
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +

                                                                                                                                                                                                                A coin transfer function has three arguments "from", "to" and "amount".

                                                                                                                                                                                                                +
                                                                                                                                                                                                                public(script) fun transfer<CoinType>(from: &signer, to: address, amount: u64)
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +

                                                                                                                                                                                                              The arguments that the bytecode function requires.

                                                                                                                                                                                                              +
                                                                                                                                                                                                              bytecode: Uint8Array

                                                                                                                                                                                                              The move module bytecode

                                                                                                                                                                                                              +
                                                                                                                                                                                                              type_args: TypeTag[]

                                                                                                                                                                                                              The type arguments that the bytecode function requires.

                                                                                                                                                                                                              +

                                                                                                                                                                                                              Methods

                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Secp256k1PrivateKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Secp256k1PrivateKey.html new file mode 100644 index 000000000..90efeac5b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Secp256k1PrivateKey.html @@ -0,0 +1,71 @@ +Secp256k1PrivateKey | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                Class Secp256k1PrivateKey

                                                                                                                                                                                                                Represents a Secp256k1 ECDSA private key, providing functionality to create, sign messages, +derive public keys, and serialize/deserialize the key.

                                                                                                                                                                                                                +

                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                Implements

                                                                                                                                                                                                                Index

                                                                                                                                                                                                                Implementation - BCS

                                                                                                                                                                                                                • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Returns Uint8Array

                                                                                                                                                                                                                  the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Returns Hex

                                                                                                                                                                                                                  A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                Implementation - Serialization

                                                                                                                                                                                                                LENGTH: number = 32

                                                                                                                                                                                                                Length of Secp256k1 ecdsa private key

                                                                                                                                                                                                                +
                                                                                                                                                                                                                • Clears the private key from memory by overwriting it with random bytes. +After calling this method, the private key can no longer be used for signing or deriving public keys.

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Note: Due to JavaScript's memory management, this cannot guarantee complete removal of +sensitive data from memory, but it significantly reduces the window of exposure.

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                • Returns whether the private key has been cleared from memory.

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Returns boolean

                                                                                                                                                                                                                  true if the key has been cleared, false otherwise

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                • Sign the given message with the private key. +This function generates a cryptographic signature for the provided message, ensuring the signature is canonical and non-malleable.

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                  • message: HexInput

                                                                                                                                                                                                                    A message in HexInput format to be signed.

                                                                                                                                                                                                                    +

                                                                                                                                                                                                                  Returns Secp256k1Signature

                                                                                                                                                                                                                  Signature - The generated signature for the provided message.

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Error if the private key has been cleared from memory.

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                • Get the private key in bytes (Uint8Array).

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Returns Uint8Array

                                                                                                                                                                                                                  Uint8Array representation of the private key

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Error if the private key has been cleared from memory.

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                • Derives a private key from a mnemonic seed phrase using a specified BIP44 path.

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                  • path: string

                                                                                                                                                                                                                    The BIP44 path to derive the key from.

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                  • mnemonics: string

                                                                                                                                                                                                                    The mnemonic seed phrase used for key generation.

                                                                                                                                                                                                                    +

                                                                                                                                                                                                                  Returns Secp256k1PrivateKey

                                                                                                                                                                                                                  The generated private key.

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Error if the provided path is not a valid BIP44 path.

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                Methods

                                                                                                                                                                                                                • Get the private key as a AIP-80 compliant hex string.

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Read about AIP-80

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Returns string

                                                                                                                                                                                                                  AIP-80 compliant string representation of the private key.

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Error if the private key has been cleared from memory.

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                • Get the private key as a hex string with the 0x prefix.

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Returns string

                                                                                                                                                                                                                  string representation of the private key.

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Error if the private key has been cleared from memory.

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Secp256k1PublicKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Secp256k1PublicKey.html new file mode 100644 index 000000000..a181dd6ca --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Secp256k1PublicKey.html @@ -0,0 +1,61 @@ +Secp256k1PublicKey | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                  Class Secp256k1PublicKey

                                                                                                                                                                                                                  Represents a Secp256k1 ECDSA public key.

                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                  Implementation - BCS

                                                                                                                                                                                                                  • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    Returns Uint8Array

                                                                                                                                                                                                                    the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                  • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    Returns Hex

                                                                                                                                                                                                                    A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                    +

                                                                                                                                                                                                                  Implementation - Serialization

                                                                                                                                                                                                                  • Serializes the data into a byte array using the provided serializer. +This function is essential for converting data into a format suitable for transmission or storage.

                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                    • serializer: Serializer

                                                                                                                                                                                                                      The serializer instance used to convert the data.

                                                                                                                                                                                                                      +

                                                                                                                                                                                                                    Returns void

                                                                                                                                                                                                                  • Note: Secp256k1Signatures can be verified syncronously.

                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    Verifies the provided signature against the given message. +This function helps ensure the integrity and authenticity of the message by confirming that the signature is valid.

                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                    Returns Promise<boolean>

                                                                                                                                                                                                                    A boolean indicating whether the signature is valid for the given message.

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                  • Determines if the provided public key is a valid instance of a Secp256k1 public key. +This function checks for the presence of a "key" property and validates the length of the key data.

                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                    • publicKey: PublicKey

                                                                                                                                                                                                                      The public key to validate.

                                                                                                                                                                                                                      +

                                                                                                                                                                                                                    Returns publicKey is Secp256k1PublicKey

                                                                                                                                                                                                                    A boolean indicating whether the public key is a valid Secp256k1 public key.

                                                                                                                                                                                                                    +

                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                  keyType: string = "secp256k1"
                                                                                                                                                                                                                  COMPRESSED_LENGTH: number = 33
                                                                                                                                                                                                                  LENGTH: number = 65

                                                                                                                                                                                                                  The length of the Secp256k1 public key in bytes.

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Secp256k1Signature.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Secp256k1Signature.html new file mode 100644 index 000000000..279c4fb44 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Secp256k1Signature.html @@ -0,0 +1,25 @@ +Secp256k1Signature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                    Class Secp256k1Signature

                                                                                                                                                                                                                    Represents a signature of a message signed using a Secp256k1 ECDSA private key.

                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                    Implementation - BCS

                                                                                                                                                                                                                    Implementation - Serialization

                                                                                                                                                                                                                    Methods

                                                                                                                                                                                                                    Implementation - BCS

                                                                                                                                                                                                                    • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Returns Uint8Array

                                                                                                                                                                                                                      the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                    • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Returns Hex

                                                                                                                                                                                                                      A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                      +

                                                                                                                                                                                                                    Implementation - Serialization

                                                                                                                                                                                                                    LENGTH: 64

                                                                                                                                                                                                                    Secp256k1 ecdsa signatures are 256-bit.

                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    Methods

                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Secp256r1PrivateKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Secp256r1PrivateKey.html new file mode 100644 index 000000000..ea350c535 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Secp256r1PrivateKey.html @@ -0,0 +1,50 @@ +Secp256r1PrivateKey | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                      Class Secp256r1PrivateKey

                                                                                                                                                                                                                      Represents a Secp256r1 ECDSA private key, providing functionality to create, sign messages, +derive public keys, and serialize/deserialize the key.

                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                      Implementation - Serialization

                                                                                                                                                                                                                      LENGTH: number = 32

                                                                                                                                                                                                                      Length of Secp256r1 ecdsa private key

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      • Serializes the data into a byte array using the provided serializer. +This function is essential for converting data into a format suitable for transmission or storage.

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Parameters

                                                                                                                                                                                                                        • serializer: Serializer

                                                                                                                                                                                                                          The serializer instance used to convert the data.

                                                                                                                                                                                                                          +

                                                                                                                                                                                                                        Returns void

                                                                                                                                                                                                                      • Get the private key as a string representation.

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Returns string

                                                                                                                                                                                                                        string representation of the private key

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                      • Get the private key as a hex string with the 0x prefix.

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Returns string

                                                                                                                                                                                                                        string representation of the private key.

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                      AIP80_PREFIXES: { ed25519: string; secp256k1: string; secp256r1: string } = ...

                                                                                                                                                                                                                      The AIP-80 compliant prefixes for each private key type. Append this to a private key's hex representation +to get an AIP-80 compliant string.

                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Read about AIP-80

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Secp256r1PublicKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Secp256r1PublicKey.html new file mode 100644 index 000000000..7efd24889 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Secp256r1PublicKey.html @@ -0,0 +1,60 @@ +Secp256r1PublicKey | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                        Class Secp256r1PublicKey

                                                                                                                                                                                                                        Represents a Secp256r1 ECDSA public key.

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                        Implementation - BCS

                                                                                                                                                                                                                        • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          Returns Hex

                                                                                                                                                                                                                          A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                          +

                                                                                                                                                                                                                        Implementation - Serialization

                                                                                                                                                                                                                        • Create a new PublicKey instance from a HexInput, which can be a string or Uint8Array. +This constructor validates the length of the provided public key data.

                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                          • hexInput: HexInput

                                                                                                                                                                                                                            A HexInput (string or Uint8Array) representing the public key data.

                                                                                                                                                                                                                            +

                                                                                                                                                                                                                          Returns Secp256r1PublicKey

                                                                                                                                                                                                                          Error if the length of the public key data is not equal to Secp256r1PublicKey.LENGTH or COMPRESSED_LENGTH.

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                        • Generates an authentication key from the public key using the Secp256r1 scheme. +This function is essential for creating a secure authentication key that can be used for further cryptographic operations.

                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          Returns AuthenticationKey

                                                                                                                                                                                                                          The generated authentication key.

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                        • Serializes the data into a byte array using the provided serializer. +This function is essential for converting data into a format suitable for transmission or storage.

                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                          • serializer: Serializer

                                                                                                                                                                                                                            The serializer instance used to convert the data.

                                                                                                                                                                                                                            +

                                                                                                                                                                                                                          Returns void

                                                                                                                                                                                                                        • Note: Secp256r1Signatures can be verified synchronously.

                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          Verifies the provided signature against the given message. +This function helps ensure the integrity and authenticity of the message by confirming that the signature is valid.

                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                          Returns Promise<boolean>

                                                                                                                                                                                                                          A boolean indicating whether the signature is valid for the given message.

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                        • Determines if the provided public key is a valid instance of a Secp256r1 public key. +This function checks for the presence of a "key" property and validates the length of the key data.

                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                          • publicKey: PublicKey

                                                                                                                                                                                                                            The public key to validate.

                                                                                                                                                                                                                            +

                                                                                                                                                                                                                          Returns publicKey is Secp256r1PublicKey

                                                                                                                                                                                                                          A boolean indicating whether the public key is a valid Secp256r1 public key.

                                                                                                                                                                                                                          +

                                                                                                                                                                                                                        Methods

                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                        keyType: string = "secp256r1"
                                                                                                                                                                                                                        COMPRESSED_LENGTH: number = 33
                                                                                                                                                                                                                        LENGTH: number = 65

                                                                                                                                                                                                                        The length of the Secp256r1 public key in bytes.

                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Secp256r1Signature.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Secp256r1Signature.html new file mode 100644 index 000000000..5a29379f7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Secp256r1Signature.html @@ -0,0 +1,32 @@ +Secp256r1Signature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                          Class Secp256r1Signature

                                                                                                                                                                                                                          Represents a signature of a message signed using a Secp256r1 ECDSA private key.

                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                          Implementation - BCS

                                                                                                                                                                                                                          Implementation - Serialization

                                                                                                                                                                                                                          Methods

                                                                                                                                                                                                                          Implementation - BCS

                                                                                                                                                                                                                          • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            Returns Uint8Array

                                                                                                                                                                                                                            the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                          • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            Returns Hex

                                                                                                                                                                                                                            A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                            +

                                                                                                                                                                                                                          Implementation - Serialization

                                                                                                                                                                                                                          LENGTH: 64

                                                                                                                                                                                                                          Secp256r1 ecdsa signatures are 256-bit.

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          • Serializes the data into a byte array using the provided serializer. +This function is essential for converting data into a format suitable for transmission or storage.

                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                            • serializer: Serializer

                                                                                                                                                                                                                              The serializer instance used to convert the data.

                                                                                                                                                                                                                              +

                                                                                                                                                                                                                            Returns void

                                                                                                                                                                                                                          Methods

                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Serializable.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Serializable.html new file mode 100644 index 000000000..a93272747 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Serializable.html @@ -0,0 +1,20 @@ +Serializable | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                            Class SerializableAbstract

                                                                                                                                                                                                                            This class serves as a base class for all serializable types. It facilitates +composable serialization of complex types and enables the serialization of +instances to their BCS (Binary Canonical Serialization) representation.

                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                            Implementation - BCS

                                                                                                                                                                                                                            Constructors

                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                            Implementation - BCS

                                                                                                                                                                                                                            • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              Returns Uint8Array

                                                                                                                                                                                                                              the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              Returns Hex

                                                                                                                                                                                                                              A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                              +

                                                                                                                                                                                                                            Constructors

                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                            • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              Returns string

                                                                                                                                                                                                                              the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            • Returns the hex string representation of the Serializable value without the 0x prefix.

                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              Returns string

                                                                                                                                                                                                                              the hex format as a string without 0x prefix.

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Serialized.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Serialized.html new file mode 100644 index 000000000..5665c8b12 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Serialized.html @@ -0,0 +1,37 @@ +Serialized | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                              Class Serialized

                                                                                                                                                                                                                              Represents a serialized data structure that encapsulates a byte array. +This class extends the Serializable class and provides methods for serialization +and deserialization of byte data, as well as converting to a MoveVector.

                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                              Implements

                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                              Implementation - BCS

                                                                                                                                                                                                                              Implementation - Transactions

                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                              Implementation - BCS

                                                                                                                                                                                                                              • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                Returns Hex

                                                                                                                                                                                                                                A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                +

                                                                                                                                                                                                                              Implementation - Transactions

                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                              • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                Returns string

                                                                                                                                                                                                                                the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                                                +

                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                              value: Uint8Array
                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Serializer.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Serializer.html new file mode 100644 index 000000000..bca6b971b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Serializer.html @@ -0,0 +1,149 @@ +Serializer | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                Class Serializer

                                                                                                                                                                                                                                A class for serializing various data types into a binary format. +It provides methods to serialize strings, bytes, numbers, and other serializable objects +using the Binary Coded Serialization (BCS) layout. The serialized data can be retrieved as a +Uint8Array.

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                Implementation - BCS

                                                                                                                                                                                                                                • Constructs a serializer with a buffer of size length bytes, 64 bytes by default. +The length must be greater than 0.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • length: number = 64

                                                                                                                                                                                                                                    The size of the buffer in bytes.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns Serializer

                                                                                                                                                                                                                                • Returns the current number of bytes written to the serializer.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Returns number

                                                                                                                                                                                                                                  The number of bytes written.

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                • Resets the serializer to its initial state, allowing the buffer to be reused. +This clears the buffer contents to prevent data leakage between uses.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                • Serializes a Serializable value, facilitating composable serialization.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • value: T

                                                                                                                                                                                                                                    The Serializable value to serialize.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                  the serializer instance

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                • Serializes a Serializable value as a byte array with a length prefix. +This is the optimized pattern for entry function argument serialization.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Instead of:

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  const bcsBytes = value.bcsToBytes();  // Creates new Serializer, copies bytes
                                                                                                                                                                                                                                  serializer.serializeBytes(bcsBytes); +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  Use:

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  serializer.serializeAsBytes(value);  // Uses pooled Serializer, avoids extra copy
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  This method uses a pooled Serializer instance to reduce allocations and +directly appends the serialized bytes with a length prefix.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • value: T

                                                                                                                                                                                                                                    The Serializable value to serialize as bytes.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                • Serializes a boolean value into a byte representation.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  The BCS layout for a boolean uses one byte, where "0x01" represents true and "0x00" represents false.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • value: boolean

                                                                                                                                                                                                                                    The boolean value to serialize.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                • Serializes an array of bytes.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  This function encodes the length of the byte array as a u32 integer in uleb128 format, followed by the byte array itself. +BCS layout for "bytes": bytes_length | bytes +where bytes_length is a u32 integer encoded as a uleb128 integer, equal to the length of the bytes array.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • value: Uint8Array

                                                                                                                                                                                                                                    The byte array to serialize.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                • Serializes an array of bytes with a known length, allowing for efficient deserialization without needing to serialize the +length itself. +When deserializing, the number of bytes to deserialize needs to be passed in.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • value: Uint8Array

                                                                                                                                                                                                                                    The Uint8Array to be serialized.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                • Serializes a 16-bit signed integer value into a binary format. +BCS layout for "int16": Two bytes. Binary format in little-endian representation.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • value: number

                                                                                                                                                                                                                                    The 16-bit signed integer value to serialize.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                • Serializes a 32-bit signed integer value into a binary format.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • value: number

                                                                                                                                                                                                                                    The 32-bit signed integer value to serialize.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                • Serializes a 64-bit signed integer into a format suitable for storage or transmission. +This function uses two's complement representation for negative values.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • value: AnyNumber

                                                                                                                                                                                                                                    The 64-bit signed integer to serialize.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                • Serializes an 8-bit signed integer value. +BCS layout for "int8": One byte. Binary format in little-endian representation.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • value: number

                                                                                                                                                                                                                                    The 8-bit signed integer value to serialize.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                • Serializes an optional value which can be a Serializable, string, or Uint8Array. +For strings and Uint8Arrays, it uses the appropriate serialization method.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • Optionalvalue: T

                                                                                                                                                                                                                                    The value to serialize (Serializable, string, Uint8Array, or undefined)

                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                  • Optionallen: number

                                                                                                                                                                                                                                    Optional fixed length for Uint8Array serialization. If provided, uses serializeFixedBytes instead of serializeBytes

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                  const serializer = new Serializer();
                                                                                                                                                                                                                                  serializer.serializeOption("hello"); // Serializes optional string
                                                                                                                                                                                                                                  serializer.serializeOption(new Uint8Array([1, 2, 3])); // Serializes optional bytes
                                                                                                                                                                                                                                  serializer.serializeOption(new Uint8Array([1, 2, 3]), 3); // Serializes optional fixed-length bytes
                                                                                                                                                                                                                                  serializer.serializeOption(new AccountAddress(...)); // Serializes optional Serializable
                                                                                                                                                                                                                                  serializer.serializeOption(undefined); // Serializes none case +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                • Parameters

                                                                                                                                                                                                                                  • Optionalvalue: string

                                                                                                                                                                                                                                    The optional string to serialize. If undefined, it will serialize as 0.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                  use serializeOption instead. +Serializes an optional string, supporting UTF8 encoding. +The function encodes the existence of the string first, followed by the length and content if it exists.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  BCS layout for optional "string": 1 | string_length | string_content +where string_length is a u32 integer encoded as a uleb128 integer, equal to the number of bytes in string_content. +BCS layout for undefined: 0

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                • Serializes a string. UTF8 string is supported. +The number of bytes in the string content is serialized first, as a uleb128-encoded u32 integer. +Then the string content is serialized as UTF8 encoded bytes.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  BCS layout for "string": string_length | string_content +where string_length is a u32 integer encoded as a uleb128 integer, equal to the number of bytes in string_content.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • value: string

                                                                                                                                                                                                                                    The string to serialize.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                  const serializer = new Serializer();
                                                                                                                                                                                                                                  serializer.serializeStr("1234abcd");
                                                                                                                                                                                                                                  assert(serializer.toUint8Array() === new Uint8Array([8, 49, 50, 51, 52, 97, 98, 99, 100])); +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                • Serializes a U128 value into a format suitable for storage or transmission.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • value: AnyNumber

                                                                                                                                                                                                                                    The U128 value to serialize, represented as a number.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                • Serializes a 16-bit unsigned integer value into a binary format. +BCS layout for "uint16": Two bytes. Binary format in little-endian representation.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • value: number

                                                                                                                                                                                                                                    The 16-bit unsigned integer value to serialize.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                  const serializer = new Serializer();
                                                                                                                                                                                                                                  serializer.serializeU16(4660);
                                                                                                                                                                                                                                  assert(serializer.toUint8Array() === new Uint8Array([0x34, 0x12])); +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                • Serializes a U256 value into a byte representation. +This function is essential for encoding large numbers in a compact format suitable for transmission or storage.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • value: AnyNumber

                                                                                                                                                                                                                                    The U256 value to serialize, represented as an AnyNumber.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                • Serializes a 32-bit unsigned integer value into a binary format. +This function is useful for encoding data that needs to be stored or transmitted in a compact form.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • value: number

                                                                                                                                                                                                                                    The 32-bit unsigned integer value to serialize.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                  const serializer = new Serializer();
                                                                                                                                                                                                                                  serializer.serializeU32(305419896);
                                                                                                                                                                                                                                  assert(serializer.toUint8Array() === new Uint8Array([0x78, 0x56, 0x34, 0x12])); +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                • Serializes a 32-bit unsigned integer as a variable-length ULEB128 encoded byte array. +BCS uses uleb128 encoding in two cases: (1) lengths of variable-length sequences and (2) tags of enum values

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • val: number

                                                                                                                                                                                                                                    The 32-bit unsigned integer value to be serialized.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                • Serializes a 64-bit unsigned integer into a format suitable for storage or transmission. +This function breaks down the value into two 32-bit components and writes them in little-endian order.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • value: AnyNumber

                                                                                                                                                                                                                                    The 64-bit unsigned integer to serialize, represented as a number.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                  const serializer = new Serializer();
                                                                                                                                                                                                                                  serializer.serializeU64(1311768467750121216);
                                                                                                                                                                                                                                  assert(serializer.toUint8Array() === new Uint8Array([0x00, 0xEF, 0xCD, 0xAB, 0x78, 0x56, 0x34, 0x12])); +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                • Serializes a Uint8 value and appends it to the buffer. +BCS layout for "uint8": One byte. Binary format in little-endian representation.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • value: number

                                                                                                                                                                                                                                    The Uint8 value to serialize.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                • Serializes an array of BCS Serializable values to a serializer instance. +The bytes are added to the serializer instance's byte buffer.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • values: T[]

                                                                                                                                                                                                                                    The array of BCS Serializable values

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                  const addresses = new Array<AccountAddress>(
                                                                                                                                                                                                                                  AccountAddress.from("0x1"),
                                                                                                                                                                                                                                  AccountAddress.from("0x2"),
                                                                                                                                                                                                                                  AccountAddress.from("0xa"),
                                                                                                                                                                                                                                  AccountAddress.from("0xb"),
                                                                                                                                                                                                                                  );
                                                                                                                                                                                                                                  const serializer = new Serializer();
                                                                                                                                                                                                                                  serializer.serializeVector(addresses);
                                                                                                                                                                                                                                  const serializedBytes = serializer.toUint8Array();
                                                                                                                                                                                                                                  // serializedBytes is now the BCS-serialized bytes
                                                                                                                                                                                                                                  // The equivalent value in Move would be:
                                                                                                                                                                                                                                  // `bcs::to_bytes(&vector<address> [@0x1, @0x2, @0xa, @0xb])`; +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                • Returns the buffered bytes as a Uint8Array.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  This function allows you to retrieve the byte representation of the buffer up to the current offset. +For better performance, returns a view when the buffer is exactly the right size, or copies +only the used portion otherwise.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Returns Uint8Array

                                                                                                                                                                                                                                  Uint8Array - The byte array representation of the buffer.

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                • Returns a view of the serialized bytes without copying. +WARNING: The returned view is only valid until the next write operation. +Use toUint8Array() if you need a persistent copy.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Returns Uint8Array

                                                                                                                                                                                                                                  A Uint8Array view of the buffer (not a copy).

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/Signature.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Signature.html new file mode 100644 index 000000000..4414a2244 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/Signature.html @@ -0,0 +1,23 @@ +Signature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                  Class SignatureAbstract

                                                                                                                                                                                                                                  An abstract representation of a crypto signature, +associated with a specific signature scheme, e.g., Ed25519 or Secp256k1.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  This class represents the product of signing a message directly from a +PrivateKey and can be verified against a CryptoPublicKey.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                  Implementation - BCS

                                                                                                                                                                                                                                  Implementation - Serialization

                                                                                                                                                                                                                                  Constructors

                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                  Implementation - BCS

                                                                                                                                                                                                                                  • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    Returns Uint8Array

                                                                                                                                                                                                                                    the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                  • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    Returns Hex

                                                                                                                                                                                                                                    A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                  Implementation - Serialization

                                                                                                                                                                                                                                  Constructors

                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/SignedTransaction.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/SignedTransaction.html new file mode 100644 index 000000000..d43d6aaba --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/SignedTransaction.html @@ -0,0 +1,45 @@ +SignedTransaction | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                    Class SignedTransaction

                                                                                                                                                                                                                                    Represents a signed transaction that includes a raw transaction and an authenticator. +The authenticator contains a client's public key and the signature of the raw transaction.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    The raw transaction to be signed.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    Contains a client's public key and the signature of the raw transaction. +Authenticator can have three variations: single signature, multi-signature, and multi-agent.

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                    Implementation - BCS

                                                                                                                                                                                                                                    Implementation - Transactions

                                                                                                                                                                                                                                    Methods

                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                    Implementation - BCS

                                                                                                                                                                                                                                    • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      Returns Uint8Array

                                                                                                                                                                                                                                      the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                    • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      Returns Hex

                                                                                                                                                                                                                                      A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                    Implementation - Transactions

                                                                                                                                                                                                                                    Methods

                                                                                                                                                                                                                                    • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      Returns string

                                                                                                                                                                                                                                      the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/SimpleTransaction.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/SimpleTransaction.html new file mode 100644 index 000000000..0c700e521 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/SimpleTransaction.html @@ -0,0 +1,36 @@ +SimpleTransaction | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                      Class SimpleTransaction

                                                                                                                                                                                                                                      Represents a simple transaction type that can be submitted to the Aptos chain for execution.

                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      This transaction type is designed for a single signer and includes metadata such as the Raw Transaction +and an optional sponsor Account Address to cover gas fees.

                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      The Raw Transaction.

                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      The optional sponsor Account Address.

                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                      Implementation - BCS

                                                                                                                                                                                                                                      • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        Returns Uint8Array

                                                                                                                                                                                                                                        the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                      • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        Returns Hex

                                                                                                                                                                                                                                        A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                      Implementation - Transactions

                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                      • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        Returns string

                                                                                                                                                                                                                                        the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                      feePayerAddress?: AccountAddress
                                                                                                                                                                                                                                      rawTransaction: RawTransaction
                                                                                                                                                                                                                                      secondarySignerAddresses: undefined
                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/SingleKeyAccount.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/SingleKeyAccount.html new file mode 100644 index 000000000..df3c430a0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/SingleKeyAccount.html @@ -0,0 +1,63 @@ +SingleKeyAccount | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                        Class SingleKeyAccount

                                                                                                                                                                                                                                        Signer implementation for the SingleKey authentication scheme. +This class extends a SingleKeyAccount by adding signing capabilities through a valid private key. +Currently, the only supported signature schemes are Ed25519 and Secp256k1.

                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        Note: Generating a signer instance does not create the account on-chain.

                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        Implements

                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                        Implementation - Account (On-Chain Model)

                                                                                                                                                                                                                                        accountAddress: AccountAddress

                                                                                                                                                                                                                                        Account address associated with the account

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        privateKey: PrivateKeyInput

                                                                                                                                                                                                                                        Private key associated with the account

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        publicKey: AnyPublicKey

                                                                                                                                                                                                                                        Public key associated with the account

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        signingScheme: SingleKey = SigningScheme.SingleKey

                                                                                                                                                                                                                                        Signing scheme used to sign transactions

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        • Verify the given message and signature with the account's public key.

                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          This function checks if the provided signature is valid for the given message using the account's public key.

                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                                          • args: {
                                                                                                                                                                                                                                                aptosConfig: AptosConfig;
                                                                                                                                                                                                                                                message: HexInput;
                                                                                                                                                                                                                                                options?: { throwErrorWithReason?: boolean };
                                                                                                                                                                                                                                                signature: Signature;
                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                            The arguments for verifying the signature.

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            • aptosConfig: AptosConfig
                                                                                                                                                                                                                                            • message: HexInput

                                                                                                                                                                                                                                              The raw message data in HexInput format.

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                            • Optionaloptions?: { throwErrorWithReason?: boolean }
                                                                                                                                                                                                                                              • OptionalthrowErrorWithReason?: boolean

                                                                                                                                                                                                                                                Whether to throw an error with the reason for the verification failure.

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                            • signature: Signature

                                                                                                                                                                                                                                              The signed message signature.

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                          Returns Promise<boolean>

                                                                                                                                                                                                                                          A boolean indicating whether the signature is valid for the message.

                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                        Methods

                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/StructTag.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/StructTag.html new file mode 100644 index 000000000..0dc2d7c3a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/StructTag.html @@ -0,0 +1,29 @@ +StructTag | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                          Class StructTag

                                                                                                                                                                                                                                          Represents a structured tag that includes an address, module name, +name, and type arguments. This class is used to define and manage +structured data types within the SDK.

                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                          Implementation - BCS

                                                                                                                                                                                                                                          • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            Returns Uint8Array

                                                                                                                                                                                                                                            the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                          • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            Returns Hex

                                                                                                                                                                                                                                            A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                          Constructors

                                                                                                                                                                                                                                          Methods

                                                                                                                                                                                                                                          • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            Returns string

                                                                                                                                                                                                                                            the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                          The address associated with the struct tag.

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          moduleName: Identifier

                                                                                                                                                                                                                                          The name of the module that contains the struct.

                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          The name of the struct.

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          typeArgs: TypeTag[]

                                                                                                                                                                                                                                          An array of type arguments associated with the struct.

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAndProof.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAndProof.html new file mode 100644 index 000000000..d88c029da --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAndProof.html @@ -0,0 +1,31 @@ +TransactionAndProof | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                            Class TransactionAndProof

                                                                                                                                                                                                                                            A container class to hold a transaction and a proof. It implements CryptoHashable which is used to create +the signing message for Keyless transactions. We sign over the proof to ensure non-malleability.

                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                            Implementation - Account (On-Chain Model)

                                                                                                                                                                                                                                            Implementation - BCS

                                                                                                                                                                                                                                            Constructors

                                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                                            Implementation - Account (On-Chain Model)

                                                                                                                                                                                                                                            domainSeparator: "APTOS::TransactionAndProof"

                                                                                                                                                                                                                                            The domain separator prefix used when hashing.

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            proof?: ZkProof

                                                                                                                                                                                                                                            The zero knowledge proof used in signing the transaction.

                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            The transaction to sign.

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            • Hashes the bcs serialized from of the class. This is the typescript corollary to the BCSCryptoHash macro in aptos-core.

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Returns Uint8Array

                                                                                                                                                                                                                                              Uint8Array

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                            Implementation - BCS

                                                                                                                                                                                                                                            • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Returns Uint8Array

                                                                                                                                                                                                                                              the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                            • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Returns Hex

                                                                                                                                                                                                                                              A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                            Constructors

                                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                                            • Serializes the transaction data into a format suitable for transmission or storage. +This function ensures that both the transaction bytes and the proof are properly serialized.

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                              • serializer: Serializer

                                                                                                                                                                                                                                                The serializer instance used to convert the transaction data into bytes.

                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                              Returns void

                                                                                                                                                                                                                                            • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Returns string

                                                                                                                                                                                                                                              the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAuthenticator.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAuthenticator.html new file mode 100644 index 000000000..5b9250a24 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAuthenticator.html @@ -0,0 +1,28 @@ +TransactionAuthenticator | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                              Class TransactionAuthenticatorAbstract

                                                                                                                                                                                                                                              Represents an abstract base class for transaction authenticators. +This class provides methods for serializing and deserializing different types of transaction authenticators.

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                              Implementation - BCS

                                                                                                                                                                                                                                              Implementation - Transactions

                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                              Implementation - BCS

                                                                                                                                                                                                                                              • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                Returns Uint8Array

                                                                                                                                                                                                                                                the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                Returns Hex

                                                                                                                                                                                                                                                A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                              Implementation - Transactions

                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                              • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                Returns string

                                                                                                                                                                                                                                                the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAuthenticatorEd25519.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAuthenticatorEd25519.html new file mode 100644 index 000000000..1f4c32ee2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAuthenticatorEd25519.html @@ -0,0 +1,43 @@ +TransactionAuthenticatorEd25519 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                Class TransactionAuthenticatorEd25519

                                                                                                                                                                                                                                                Represents a transaction authenticator using Ed25519 for a single signer transaction. +This class encapsulates the client's public key and the Ed25519 signature of a raw transaction.

                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                The client's public key.

                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                The Ed25519 signature of a raw transaction.

                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                Creating a Signed Transaction +for details about generating a signature.

                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                Implementation - BCS

                                                                                                                                                                                                                                                • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  Returns Uint8Array

                                                                                                                                                                                                                                                  the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  Returns Hex

                                                                                                                                                                                                                                                  A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                Implementation - Transactions

                                                                                                                                                                                                                                                Methods

                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                public_key: Ed25519PublicKey
                                                                                                                                                                                                                                                signature: Ed25519Signature
                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAuthenticatorFeePayer.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAuthenticatorFeePayer.html new file mode 100644 index 000000000..f9681c32d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAuthenticatorFeePayer.html @@ -0,0 +1,38 @@ +TransactionAuthenticatorFeePayer | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                  Class TransactionAuthenticatorFeePayer

                                                                                                                                                                                                                                                  Represents a transaction authenticator specifically for fee payer transactions. +It encapsulates the sender's account authenticator, addresses of secondary signers, +their respective authenticators, and the fee payer's account information.

                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  The authenticator for the sender's account.

                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  An array of addresses for secondary signers.

                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  An array of authenticators for secondary signers' accounts.

                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  An object containing the fee payer's account address and authenticator.

                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                  Implementation - BCS

                                                                                                                                                                                                                                                  • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    Returns Uint8Array

                                                                                                                                                                                                                                                    the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                  • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    Returns Hex

                                                                                                                                                                                                                                                    A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                  Implementation - Transactions

                                                                                                                                                                                                                                                  Constructors

                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                  fee_payer: { address: AccountAddress; authenticator: AccountAuthenticator }
                                                                                                                                                                                                                                                  secondary_signer_addresses: AccountAddress[]
                                                                                                                                                                                                                                                  secondary_signers: AccountAuthenticator[]
                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAuthenticatorMultiAgent.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAuthenticatorMultiAgent.html new file mode 100644 index 000000000..2158fe44a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAuthenticatorMultiAgent.html @@ -0,0 +1,35 @@ +TransactionAuthenticatorMultiAgent | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                    Class TransactionAuthenticatorMultiAgent

                                                                                                                                                                                                                                                    Represents a transaction authenticator for a multi-agent transaction.

                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    This class manages the authentication process involving a primary sender and multiple secondary signers.

                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The authenticator for the sender account.

                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    An array of addresses for the secondary signers.

                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    An array of authenticators for the secondary signer accounts.

                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                    Implementation - BCS

                                                                                                                                                                                                                                                    • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      Returns Uint8Array

                                                                                                                                                                                                                                                      the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                    • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      Returns Hex

                                                                                                                                                                                                                                                      A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                    Implementation - Transactions

                                                                                                                                                                                                                                                    Constructors

                                                                                                                                                                                                                                                    Methods

                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                    secondary_signer_addresses: AccountAddress[]
                                                                                                                                                                                                                                                    secondary_signers: AccountAuthenticator[]
                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAuthenticatorMultiEd25519.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAuthenticatorMultiEd25519.html new file mode 100644 index 000000000..bbc03f76b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAuthenticatorMultiEd25519.html @@ -0,0 +1,33 @@ +TransactionAuthenticatorMultiEd25519 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                      Class TransactionAuthenticatorMultiEd25519

                                                                                                                                                                                                                                                      Represents a transaction authenticator for multi-signature transactions using Ed25519. +This class is used to validate transactions that require multiple signatures from different signers.

                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      The public key of the client involved in the transaction.

                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      The multi-signature of the raw transaction.

                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                      Implementation - BCS

                                                                                                                                                                                                                                                      Implementation - Transactions

                                                                                                                                                                                                                                                      Constructors

                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                      Implementation - BCS

                                                                                                                                                                                                                                                      • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        Returns Uint8Array

                                                                                                                                                                                                                                                        the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                      • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        Returns Hex

                                                                                                                                                                                                                                                        A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                      Implementation - Transactions

                                                                                                                                                                                                                                                      Constructors

                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAuthenticatorSingleSender.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAuthenticatorSingleSender.html new file mode 100644 index 000000000..dd5247292 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionAuthenticatorSingleSender.html @@ -0,0 +1,31 @@ +TransactionAuthenticatorSingleSender | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                        Class TransactionAuthenticatorSingleSender

                                                                                                                                                                                                                                                        Represents a single sender authenticator for transactions that require a single signer. +This class is responsible for managing the authentication of a transaction initiated by a single sender.

                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        An instance of AccountAuthenticator that represents the account of the sender.

                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                        Implementation - BCS

                                                                                                                                                                                                                                                        Implementation - Transactions

                                                                                                                                                                                                                                                        Constructors

                                                                                                                                                                                                                                                        Methods

                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                        Implementation - BCS

                                                                                                                                                                                                                                                        • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          Returns Uint8Array

                                                                                                                                                                                                                                                          the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                        • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          Returns Hex

                                                                                                                                                                                                                                                          A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                        Implementation - Transactions

                                                                                                                                                                                                                                                        Constructors

                                                                                                                                                                                                                                                        Methods

                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionExecutable.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionExecutable.html new file mode 100644 index 000000000..748bb7077 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionExecutable.html @@ -0,0 +1,4 @@ +TransactionExecutable | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                          Class TransactionExecutableAbstract

                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                          Constructors

                                                                                                                                                                                                                                                          Methods

                                                                                                                                                                                                                                                          Constructors

                                                                                                                                                                                                                                                          Methods

                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionExecutableEmpty.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionExecutableEmpty.html new file mode 100644 index 000000000..a15edc03b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionExecutableEmpty.html @@ -0,0 +1,5 @@ +TransactionExecutableEmpty | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                            Class TransactionExecutableEmpty

                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                            Constructors

                                                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                                                            Constructors

                                                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionExecutableEntryFunction.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionExecutableEntryFunction.html new file mode 100644 index 000000000..6b7cf576f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionExecutableEntryFunction.html @@ -0,0 +1,6 @@ +TransactionExecutableEntryFunction | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                              Class TransactionExecutableEntryFunction

                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                              entryFunction: EntryFunction
                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionExecutableScript.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionExecutableScript.html new file mode 100644 index 000000000..92ff10f38 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionExecutableScript.html @@ -0,0 +1,6 @@ +TransactionExecutableScript | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                Class TransactionExecutableScript

                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                Constructors

                                                                                                                                                                                                                                                                Methods

                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                Constructors

                                                                                                                                                                                                                                                                Methods

                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                script: Script
                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionExtraConfig.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionExtraConfig.html new file mode 100644 index 000000000..e17b0944c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionExtraConfig.html @@ -0,0 +1,4 @@ +TransactionExtraConfig | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                  Class TransactionExtraConfigAbstract

                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                  Constructors

                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                  Constructors

                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionExtraConfigV1.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionExtraConfigV1.html new file mode 100644 index 000000000..5ce75740a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionExtraConfigV1.html @@ -0,0 +1,7 @@ +TransactionExtraConfigV1 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                    Class TransactionExtraConfigV1

                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                    Constructors

                                                                                                                                                                                                                                                                    Methods

                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                    multisigAddress?: AccountAddress
                                                                                                                                                                                                                                                                    replayProtectionNonce?: bigint
                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionInnerPayload.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionInnerPayload.html new file mode 100644 index 000000000..76699b66d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionInnerPayload.html @@ -0,0 +1,24 @@ +TransactionInnerPayload | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                      Class TransactionInnerPayloadAbstract

                                                                                                                                                                                                                                                                      Represents any transaction payload that can be submitted to the Aptos chain for execution.

                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                      This is specifically required for orderless transactions, but can be used for any transaction payload.

                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                      Implementation - BCS

                                                                                                                                                                                                                                                                      Implementation - Transactions

                                                                                                                                                                                                                                                                      Constructors

                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                      Implementation - BCS

                                                                                                                                                                                                                                                                      • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        Returns Uint8Array

                                                                                                                                                                                                                                                                        the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                      • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        Returns Hex

                                                                                                                                                                                                                                                                        A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                      Implementation - Transactions

                                                                                                                                                                                                                                                                      Constructors

                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionInnerPayloadV1.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionInnerPayloadV1.html new file mode 100644 index 000000000..89ac60cdd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionInnerPayloadV1.html @@ -0,0 +1,27 @@ +TransactionInnerPayloadV1 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                        Class TransactionInnerPayloadV1

                                                                                                                                                                                                                                                                        Represents any transaction payload that can be submitted to the Aptos chain for execution.

                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        This is specifically required for orderless transactions, but can be used for any transaction payload.

                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                        Implementation - BCS

                                                                                                                                                                                                                                                                        Implementation - Transactions

                                                                                                                                                                                                                                                                        Constructors

                                                                                                                                                                                                                                                                        Methods

                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                        Implementation - BCS

                                                                                                                                                                                                                                                                        • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          Returns Uint8Array

                                                                                                                                                                                                                                                                          the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                        • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          Returns Hex

                                                                                                                                                                                                                                                                          A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                        Implementation - Transactions

                                                                                                                                                                                                                                                                        Constructors

                                                                                                                                                                                                                                                                        Methods

                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionPayload.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionPayload.html new file mode 100644 index 000000000..944b8eea6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionPayload.html @@ -0,0 +1,26 @@ +TransactionPayload | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                          Class TransactionPayloadAbstract

                                                                                                                                                                                                                                                                          Represents a supported Transaction Payload that can be serialized and deserialized.

                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          This class serves as a base for different types of transaction payloads, allowing for +their serialization into a format suitable for transmission and deserialization back +into their original form.

                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                          Implementation - BCS

                                                                                                                                                                                                                                                                          Implementation - Transactions

                                                                                                                                                                                                                                                                          Constructors

                                                                                                                                                                                                                                                                          Methods

                                                                                                                                                                                                                                                                          Implementation - BCS

                                                                                                                                                                                                                                                                          • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                            Returns Uint8Array

                                                                                                                                                                                                                                                                            the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                          • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                            Returns Hex

                                                                                                                                                                                                                                                                            A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                          Implementation - Transactions

                                                                                                                                                                                                                                                                          Constructors

                                                                                                                                                                                                                                                                          Methods

                                                                                                                                                                                                                                                                          • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                            Returns string

                                                                                                                                                                                                                                                                            the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionPayloadEntryFunction.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionPayloadEntryFunction.html new file mode 100644 index 000000000..30e5cc6f6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionPayloadEntryFunction.html @@ -0,0 +1,25 @@ +TransactionPayloadEntryFunction | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                            Class TransactionPayloadEntryFunction

                                                                                                                                                                                                                                                                            Represents a transaction payload entry function that can be serialized and deserialized.

                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                            Implementation - BCS

                                                                                                                                                                                                                                                                            Implementation - Transactions

                                                                                                                                                                                                                                                                            Constructors

                                                                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                            Implementation - BCS

                                                                                                                                                                                                                                                                            • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                              Returns Uint8Array

                                                                                                                                                                                                                                                                              the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                            • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                              Returns Hex

                                                                                                                                                                                                                                                                              A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                            Implementation - Transactions

                                                                                                                                                                                                                                                                            Constructors

                                                                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                            entryFunction: EntryFunction
                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionPayloadMultiSig.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionPayloadMultiSig.html new file mode 100644 index 000000000..8f1562232 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionPayloadMultiSig.html @@ -0,0 +1,25 @@ +TransactionPayloadMultiSig | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                              Class TransactionPayloadMultiSig

                                                                                                                                                                                                                                                                              Represents a multi-signature transaction payload that can be serialized and deserialized.

                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                              Implementation - BCS

                                                                                                                                                                                                                                                                              Implementation - Transactions

                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                              Implementation - BCS

                                                                                                                                                                                                                                                                              • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                Returns Uint8Array

                                                                                                                                                                                                                                                                                the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                              • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                Returns Hex

                                                                                                                                                                                                                                                                                A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                              Implementation - Transactions

                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                              multiSig: MultiSig
                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionPayloadScript.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionPayloadScript.html new file mode 100644 index 000000000..51c3637d7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionPayloadScript.html @@ -0,0 +1,33 @@ +TransactionPayloadScript | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                Class TransactionPayloadScript

                                                                                                                                                                                                                                                                                Represents a transaction payload script that can be serialized and deserialized.

                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                This class encapsulates a script that defines the logic for a transaction payload.

                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                Implementation - BCS

                                                                                                                                                                                                                                                                                Implementation - Transactions

                                                                                                                                                                                                                                                                                Methods

                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                Implementation - BCS

                                                                                                                                                                                                                                                                                • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  Returns Uint8Array

                                                                                                                                                                                                                                                                                  the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  Returns Hex

                                                                                                                                                                                                                                                                                  A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                Implementation - Transactions

                                                                                                                                                                                                                                                                                Methods

                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                script: Script
                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionWorker.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionWorker.html new file mode 100644 index 000000000..31815c272 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TransactionWorker.html @@ -0,0 +1,102 @@ +TransactionWorker | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                  Class TransactionWorker

                                                                                                                                                                                                                                                                                  TransactionWorker provides a simple framework for receiving payloads to be processed.

                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  Once one start() the process and pushes a new transaction, the worker acquires +the current account's next sequence number (by using the AccountSequenceNumber class), +generates a signed transaction and pushes an async submission process into the outstandingTransactions queue. +At the same time, the worker processes transactions by reading the outstandingTransactions queue +and submits the next transaction to chain, it

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                  1. waits for resolution of the submission process or get pre-execution validation error +and 2) waits for the resolution of the execution process or get an execution error. +The worker fires events for any submission and/or execution success and/or failure.
                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                  Implementation - Transactions

                                                                                                                                                                                                                                                                                  • Initializes a new instance of the class, providing a framework for receiving payloads to be processed.

                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                    • aptosConfig: AptosConfig

                                                                                                                                                                                                                                                                                      A configuration object for Aptos.

                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                    • account: Account

                                                                                                                                                                                                                                                                                      The account that will be used for sending transactions.

                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                    • maxWaitTime: number = 30

                                                                                                                                                                                                                                                                                      The maximum wait time to wait before re-syncing the sequence number to the current on-chain state, +default is 30 seconds.

                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                    • maximumInFlight: number = 100

                                                                                                                                                                                                                                                                                      The maximum number of transactions that can be submitted per account, default is 100.

                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                    • sleepTime: number = 10

                                                                                                                                                                                                                                                                                      The time to wait in seconds before re-evaluating if the maximum number of transactions are in flight, +default is 10 seconds.

                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                    Returns TransactionWorker

                                                                                                                                                                                                                                                                                  executedTransactions: [string, bigint, any][] = []

                                                                                                                                                                                                                                                                                  transactions that have been committed to chain. +Limited to MAX_TRANSACTION_HISTORY_SIZE entries to prevent unbounded memory growth.

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  outstandingTransactions: AsyncQueue<
                                                                                                                                                                                                                                                                                      [Promise<PendingTransactionResponse>, bigint],
                                                                                                                                                                                                                                                                                  > = ...

                                                                                                                                                                                                                                                                                  signed transactions waiting to be submitted

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  sentTransactions: [string, bigint, any][] = []

                                                                                                                                                                                                                                                                                  transactions that have been submitted to chain. +Limited to MAX_TRANSACTION_HISTORY_SIZE entries to prevent unbounded memory growth.

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  transactionsQueue: AsyncQueue<
                                                                                                                                                                                                                                                                                      [
                                                                                                                                                                                                                                                                                          InputGenerateTransactionPayloadData,
                                                                                                                                                                                                                                                                                          InputGenerateTransactionOptions
                                                                                                                                                                                                                                                                                          | undefined,
                                                                                                                                                                                                                                                                                      ],
                                                                                                                                                                                                                                                                                  > = ...

                                                                                                                                                                                                                                                                                  transactions payloads waiting to be generated and signed

                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  TODO support entry function payload from ABI builder

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  • Generates a signed transaction that can be submitted to the chain.

                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                    • account: Account

                                                                                                                                                                                                                                                                                      An Aptos account used as the sender of the transaction.

                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                    • sequenceNumber: bigint

                                                                                                                                                                                                                                                                                      A sequence number the transaction will be generated with.

                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                    Returns Promise<SimpleTransaction | undefined>

                                                                                                                                                                                                                                                                                    A signed transaction object or undefined if the transaction queue is empty.

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                  • Reads the outstanding transaction queue and submits the transactions to the chain. +This function processes each transaction, checking their status and emitting events based on whether they were successfully +sent or failed.

                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    Returns Promise<void>

                                                                                                                                                                                                                                                                                    Throws an error if the process execution fails. +TransactionWorkerEventsEnum.TransactionSent - Emitted when a transaction has been successfully committed to the chain. +TransactionWorkerEventsEnum.TransactionSendFailed - Emitted when a transaction fails to commit, along with the error +reason. +TransactionWorkerEventsEnum.ExecutionFinish - Emitted when the execution of transactions is complete.

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                  • Starts transaction submission and processing by executing tasks from the queue until it is cancelled.

                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    Returns Promise<void>

                                                                                                                                                                                                                                                                                    Throws an error if unable to start transaction batching.

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                  • Submits the next transaction for the account by generating it with the current sequence number +and adding it to the outstanding transaction queue for processing. +This function continues to submit transactions until there are no more to process.

                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    Returns Promise<void>

                                                                                                                                                                                                                                                                                    Throws an error if the transaction submission fails.

                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                  Events - Transactions

                                                                                                                                                                                                                                                                                  • Reads the outstanding transaction queue and submits the transactions to the chain. +This function processes each transaction, checking their status and emitting events based on whether they were successfully +sent or failed.

                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    Returns Promise<void>

                                                                                                                                                                                                                                                                                    Throws an error if the process execution fails. +TransactionWorkerEventsEnum.TransactionSent - Emitted when a transaction has been successfully committed to the chain. +TransactionWorkerEventsEnum.TransactionSendFailed - Emitted when a transaction fails to commit, along with the error +reason. +TransactionWorkerEventsEnum.ExecutionFinish - Emitted when the execution of transactions is complete.

                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                                  • Remove all listeners, or those of the specified event.

                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                    • Optionalevent: keyof TransactionWorkerEvents

                                                                                                                                                                                                                                                                                    Returns this

                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                  account: Account
                                                                                                                                                                                                                                                                                  accountSequnceNumber: AccountSequenceNumber
                                                                                                                                                                                                                                                                                  aptosConfig: AptosConfig
                                                                                                                                                                                                                                                                                  started: boolean
                                                                                                                                                                                                                                                                                  taskQueue: AsyncQueue<() => Promise<void>> = ...
                                                                                                                                                                                                                                                                                  prefixed: string | boolean
                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTag.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTag.html new file mode 100644 index 000000000..ec44865a9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTag.html @@ -0,0 +1,70 @@ +TypeTag | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                    Class TypeTagAbstract

                                                                                                                                                                                                                                                                                    Represents a type tag in the serialization framework, serving as a base class for various specific type tags. +This class provides methods for serialization and deserialization of type tags, as well as type checking methods +to determine the specific type of the tag at runtime.

                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                    Implementation - BCS

                                                                                                                                                                                                                                                                                    • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                      Returns Uint8Array

                                                                                                                                                                                                                                                                                      the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                    • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                      Returns Hex

                                                                                                                                                                                                                                                                                      A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                    Implementation - Transactions

                                                                                                                                                                                                                                                                                    Constructors

                                                                                                                                                                                                                                                                                    Methods

                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagAddress.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagAddress.html new file mode 100644 index 000000000..35a12ecb4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagAddress.html @@ -0,0 +1,71 @@ +TypeTagAddress | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                      Class TypeTagAddress

                                                                                                                                                                                                                                                                                      Represents a type tag for an address in the system. +This class extends the TypeTag class and provides functionality +to serialize the address type and load it from a deserializer.

                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                      Implementation - BCS

                                                                                                                                                                                                                                                                                      • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                        Returns Uint8Array

                                                                                                                                                                                                                                                                                        the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                      • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                        Returns Hex

                                                                                                                                                                                                                                                                                        A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                      Implementation - Transactions

                                                                                                                                                                                                                                                                                      Constructors

                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagBool.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagBool.html new file mode 100644 index 000000000..bd5bc9808 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagBool.html @@ -0,0 +1,77 @@ +TypeTagBool | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                        Class TypeTagBool

                                                                                                                                                                                                                                                                                        Represents a boolean type tag in the type system. +This class extends the base TypeTag class and provides +methods for serialization and deserialization of the boolean +type tag.

                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                        Implementation - BCS

                                                                                                                                                                                                                                                                                        • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          Returns Uint8Array

                                                                                                                                                                                                                                                                                          the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          Returns Hex

                                                                                                                                                                                                                                                                                          A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                        Implementation - Transactions

                                                                                                                                                                                                                                                                                        • Serializes the current instance's properties into a provided serializer. +This function ensures that the address, module name, name, and type arguments are properly serialized.

                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                                                                                          • serializer: Serializer

                                                                                                                                                                                                                                                                                            The serializer instance used to serialize the properties.

                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                          Returns void

                                                                                                                                                                                                                                                                                        Constructors

                                                                                                                                                                                                                                                                                        Methods

                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagGeneric.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagGeneric.html new file mode 100644 index 000000000..54701b155 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagGeneric.html @@ -0,0 +1,71 @@ +TypeTagGeneric | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                          Class TypeTagGeneric

                                                                                                                                                                                                                                                                                          Represents a generic type tag used for type parameters in entry functions. +Generics are not serialized into a real type, so they cannot be used as a type directly.

                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                          Implementation - BCS

                                                                                                                                                                                                                                                                                          • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                            Returns Uint8Array

                                                                                                                                                                                                                                                                                            the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                          • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                            Returns Hex

                                                                                                                                                                                                                                                                                            A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                          Implementation - Transactions

                                                                                                                                                                                                                                                                                          Constructors

                                                                                                                                                                                                                                                                                          Methods

                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                          value: number
                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagI128.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagI128.html new file mode 100644 index 000000000..c1a982a9d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagI128.html @@ -0,0 +1,70 @@ +TypeTagI128 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                            Class TypeTagI128

                                                                                                                                                                                                                                                                                            Represents a type tag for the i128 data type. +This class extends the base TypeTag class and provides methods for serialization and deserialization.

                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                            Implementation - BCS

                                                                                                                                                                                                                                                                                            • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              Returns Uint8Array

                                                                                                                                                                                                                                                                                              the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                            • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              Returns Hex

                                                                                                                                                                                                                                                                                              A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                            Implementation - Transactions

                                                                                                                                                                                                                                                                                            Constructors

                                                                                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagI16.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagI16.html new file mode 100644 index 000000000..5ad6bcd70 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagI16.html @@ -0,0 +1,70 @@ +TypeTagI16 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                              Class TypeTagI16

                                                                                                                                                                                                                                                                                              Represents a type tag for signed 16-bit integers (i16). +This class extends the base TypeTag class and provides methods for serialization and deserialization.

                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                              Implementation - BCS

                                                                                                                                                                                                                                                                                              • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                Returns Uint8Array

                                                                                                                                                                                                                                                                                                the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                              • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                Returns Hex

                                                                                                                                                                                                                                                                                                A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                              Implementation - Transactions

                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagI256.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagI256.html new file mode 100644 index 000000000..4af046b77 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagI256.html @@ -0,0 +1,70 @@ +TypeTagI256 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                Class TypeTagI256

                                                                                                                                                                                                                                                                                                Represents a type tag for the I256 data type. +This class extends the base TypeTag class and provides methods for serialization and deserialization.

                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                Implementation - BCS

                                                                                                                                                                                                                                                                                                • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  Returns Uint8Array

                                                                                                                                                                                                                                                                                                  the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  Returns Hex

                                                                                                                                                                                                                                                                                                  A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                Implementation - Transactions

                                                                                                                                                                                                                                                                                                Constructors

                                                                                                                                                                                                                                                                                                Methods

                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagI32.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagI32.html new file mode 100644 index 000000000..0b6ded6b1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagI32.html @@ -0,0 +1,71 @@ +TypeTagI32 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                  Class TypeTagI32

                                                                                                                                                                                                                                                                                                  Represents a type tag for a 32-bit signed integer (i32). +This class extends the base TypeTag class and provides methods for serialization +and deserialization specific to the i32 type.

                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                  Implementation - BCS

                                                                                                                                                                                                                                                                                                  • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    Returns Uint8Array

                                                                                                                                                                                                                                                                                                    the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                  • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    Returns Hex

                                                                                                                                                                                                                                                                                                    A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                  Implementation - Transactions

                                                                                                                                                                                                                                                                                                  Constructors

                                                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagI64.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagI64.html new file mode 100644 index 000000000..f0d88b4e4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagI64.html @@ -0,0 +1,70 @@ +TypeTagI64 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                    Class TypeTagI64

                                                                                                                                                                                                                                                                                                    Represents a type tag for 64-bit signed integers (i64). +This class extends the base TypeTag class and provides methods for serialization and deserialization.

                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                    Implementation - BCS

                                                                                                                                                                                                                                                                                                    • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                      Returns Uint8Array

                                                                                                                                                                                                                                                                                                      the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                    • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                      Returns Hex

                                                                                                                                                                                                                                                                                                      A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                    Implementation - Transactions

                                                                                                                                                                                                                                                                                                    Constructors

                                                                                                                                                                                                                                                                                                    Methods

                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagI8.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagI8.html new file mode 100644 index 000000000..1dea8275d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagI8.html @@ -0,0 +1,71 @@ +TypeTagI8 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                      Class TypeTagI8

                                                                                                                                                                                                                                                                                                      Represents a type tag for an 8-bit signed integer (i8). +This class extends the base TypeTag class and provides methods +for serialization and deserialization specific to the i8 type.

                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                      Implementation - BCS

                                                                                                                                                                                                                                                                                                      • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        Returns Uint8Array

                                                                                                                                                                                                                                                                                                        the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                      • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        Returns Hex

                                                                                                                                                                                                                                                                                                        A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                      Implementation - Transactions

                                                                                                                                                                                                                                                                                                      Constructors

                                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagParserError.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagParserError.html new file mode 100644 index 000000000..2658cf183 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagParserError.html @@ -0,0 +1,42 @@ +TypeTagParserError | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                        Class TypeTagParserError

                                                                                                                                                                                                                                                                                                        Represents an error that occurs during the parsing of a type tag. +This error extends the built-in Error class and provides additional context +regarding the specific type tag that failed to parse and the reason for the failure.

                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        The type tag string that failed to be parsed.

                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        The reason why the type tag string is considered invalid.

                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        Hierarchy

                                                                                                                                                                                                                                                                                                        • Error
                                                                                                                                                                                                                                                                                                          • TypeTagParserError
                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                        Implementation - Transactions

                                                                                                                                                                                                                                                                                                        Methods

                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                        Implementation - Transactions

                                                                                                                                                                                                                                                                                                        Methods

                                                                                                                                                                                                                                                                                                        • Creates a .stack property on targetObject, which when accessed returns +a string representing the location in the code at which +Error.captureStackTrace() was called.

                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          const myObject = {};
                                                                                                                                                                                                                                                                                                          Error.captureStackTrace(myObject);
                                                                                                                                                                                                                                                                                                          myObject.stack; // Similar to `new Error().stack` +
                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                          The first line of the trace will be prefixed with +${myObject.name}: ${myObject.message}.

                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                          The optional constructorOpt argument accepts a function. If given, all frames +above constructorOpt, including constructorOpt, will be omitted from the +generated stack trace.

                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                          The constructorOpt argument is useful for hiding implementation +details of error generation from the user. For instance:

                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          function a() {
                                                                                                                                                                                                                                                                                                          b();
                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                          function b() {
                                                                                                                                                                                                                                                                                                          c();
                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                          function c() {
                                                                                                                                                                                                                                                                                                          // Create an error without stack trace to avoid calculating the stack trace twice.
                                                                                                                                                                                                                                                                                                          const { stackTraceLimit } = Error;
                                                                                                                                                                                                                                                                                                          Error.stackTraceLimit = 0;
                                                                                                                                                                                                                                                                                                          const error = new Error();
                                                                                                                                                                                                                                                                                                          Error.stackTraceLimit = stackTraceLimit;

                                                                                                                                                                                                                                                                                                          // Capture the stack trace above function b
                                                                                                                                                                                                                                                                                                          Error.captureStackTrace(error, b); // Neither function c, nor b is included in the stack trace
                                                                                                                                                                                                                                                                                                          throw error;
                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                          a(); +
                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                                                                                                          • targetObject: object
                                                                                                                                                                                                                                                                                                          • OptionalconstructorOpt: Function

                                                                                                                                                                                                                                                                                                          Returns void

                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                        cause?: unknown
                                                                                                                                                                                                                                                                                                        message: string
                                                                                                                                                                                                                                                                                                        name: string
                                                                                                                                                                                                                                                                                                        stack?: string
                                                                                                                                                                                                                                                                                                        stackTraceLimit: number

                                                                                                                                                                                                                                                                                                        The Error.stackTraceLimit property specifies the number of stack frames +collected by a stack trace (whether generated by new Error().stack or +Error.captureStackTrace(obj)).

                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        The default value is 10 but may be set to any valid JavaScript number. Changes +will affect any stack trace captured after the value has been changed.

                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        If set to a non-number value, or set to a negative number, stack traces will +not capture any frames.

                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagReference.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagReference.html new file mode 100644 index 000000000..76549f4fb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagReference.html @@ -0,0 +1,75 @@ +TypeTagReference | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                          Class TypeTagReference

                                                                                                                                                                                                                                                                                                          Represents a reference to a type tag in the type system. +This class extends the TypeTag class and provides functionality +to serialize and deserialize type tag references.

                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                          Implementation - BCS

                                                                                                                                                                                                                                                                                                          • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                            Returns Uint8Array

                                                                                                                                                                                                                                                                                                            the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                          • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                            Returns Hex

                                                                                                                                                                                                                                                                                                            A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                          Implementation - Transactions

                                                                                                                                                                                                                                                                                                          Methods

                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                          value: TypeTag

                                                                                                                                                                                                                                                                                                          The TypeTag to reference.

                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagSigner.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagSigner.html new file mode 100644 index 000000000..abcca887f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagSigner.html @@ -0,0 +1,71 @@ +TypeTagSigner | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                            Class TypeTagSigner

                                                                                                                                                                                                                                                                                                            Represents a type tag for a signer in the system. +This class extends the base TypeTag and provides specific functionality +related to the signer type.

                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                            Implementation - BCS

                                                                                                                                                                                                                                                                                                            • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                              Returns Uint8Array

                                                                                                                                                                                                                                                                                                              the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                            • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                              Returns Hex

                                                                                                                                                                                                                                                                                                              A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                            Implementation - Transactions

                                                                                                                                                                                                                                                                                                            Constructors

                                                                                                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagStruct.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagStruct.html new file mode 100644 index 000000000..0b60f18a0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagStruct.html @@ -0,0 +1,96 @@ +TypeTagStruct | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                              Class TypeTagStruct

                                                                                                                                                                                                                                                                                                              Represents a structured type tag in the system, extending the base TypeTag class. +This class encapsulates information about a specific structure, including its address, +module name, and type arguments, and provides methods for serialization and type checking.

                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                              The StructTag instance containing the details of the structured type.

                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                              Implementation - BCS

                                                                                                                                                                                                                                                                                                              • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                Returns Uint8Array

                                                                                                                                                                                                                                                                                                                the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                              • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                Returns Hex

                                                                                                                                                                                                                                                                                                                A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                              Implementation - Transactions

                                                                                                                                                                                                                                                                                                              • Checks if the provided value is a 'DelegationKey' for permissioned signers.

                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                Returns boolean

                                                                                                                                                                                                                                                                                                                Returns true if the value is a DelegationKey, otherwise false.

                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                              • Checks if the provided value is of type 'object'. +This function helps determine if a value can be treated as an object type in the context of the SDK.

                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                Returns boolean

                                                                                                                                                                                                                                                                                                                Returns true if the value is an object, otherwise false.

                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                              • Checks if the specified account address is of type "option".

                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                Returns boolean

                                                                                                                                                                                                                                                                                                                Returns true if the account address is an option type, otherwise false.

                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                              • Checks if the provided value is of type RateLimiter.

                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                Returns boolean

                                                                                                                                                                                                                                                                                                                Returns true if the value is a RateLimiter, otherwise false.

                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                              • Checks if the provided value is of type string. +This function can help ensure that the data being processed is in the correct format before further operations.

                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                Returns boolean

                                                                                                                                                                                                                                                                                                                Returns true if the value is a string, otherwise false.

                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                              • Determines if the provided address, module name, and struct name match the current type tag.

                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                Parameters

                                                                                                                                                                                                                                                                                                                • address: AccountAddress

                                                                                                                                                                                                                                                                                                                  The account address to compare against the type tag.

                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                • moduleName: string

                                                                                                                                                                                                                                                                                                                  The name of the module to compare against the type tag.

                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                • structName: string

                                                                                                                                                                                                                                                                                                                  The name of the struct to compare against the type tag.

                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                Returns boolean

                                                                                                                                                                                                                                                                                                                True if the address, module name, and struct name match the type tag; otherwise, false.

                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                              • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                Returns `0x${string}::${string}::${string}`

                                                                                                                                                                                                                                                                                                                the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                              value: StructTag
                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagU128.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagU128.html new file mode 100644 index 000000000..07a735b2c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagU128.html @@ -0,0 +1,70 @@ +TypeTagU128 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                Class TypeTagU128

                                                                                                                                                                                                                                                                                                                Represents a type tag for the u128 data type. +This class extends the base TypeTag class and provides methods for serialization and deserialization.

                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                Implementation - BCS

                                                                                                                                                                                                                                                                                                                • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                  Returns Uint8Array

                                                                                                                                                                                                                                                                                                                  the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                  Returns Hex

                                                                                                                                                                                                                                                                                                                  A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                Implementation - Transactions

                                                                                                                                                                                                                                                                                                                Constructors

                                                                                                                                                                                                                                                                                                                Methods

                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagU16.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagU16.html new file mode 100644 index 000000000..a71b6bb0e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagU16.html @@ -0,0 +1,70 @@ +TypeTagU16 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                  Class TypeTagU16

                                                                                                                                                                                                                                                                                                                  Represents a type tag for unsigned 16-bit integers (u16). +This class extends the base TypeTag class and provides methods for serialization and deserialization.

                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                  Implementation - BCS

                                                                                                                                                                                                                                                                                                                  • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                    Returns Uint8Array

                                                                                                                                                                                                                                                                                                                    the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                  • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                    Returns Hex

                                                                                                                                                                                                                                                                                                                    A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                  Implementation - Transactions

                                                                                                                                                                                                                                                                                                                  Constructors

                                                                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagU256.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagU256.html new file mode 100644 index 000000000..426ff2eba --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagU256.html @@ -0,0 +1,70 @@ +TypeTagU256 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                    Class TypeTagU256

                                                                                                                                                                                                                                                                                                                    Represents a type tag for the U256 data type. +This class extends the base TypeTag class and provides methods for serialization and deserialization.

                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                    Implementation - BCS

                                                                                                                                                                                                                                                                                                                    • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                      Returns Uint8Array

                                                                                                                                                                                                                                                                                                                      the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                    • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                      Returns Hex

                                                                                                                                                                                                                                                                                                                      A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                    Implementation - Transactions

                                                                                                                                                                                                                                                                                                                    Constructors

                                                                                                                                                                                                                                                                                                                    Methods

                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagU32.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagU32.html new file mode 100644 index 000000000..f2122e508 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagU32.html @@ -0,0 +1,71 @@ +TypeTagU32 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                      Class TypeTagU32

                                                                                                                                                                                                                                                                                                                      Represents a type tag for a 32-bit unsigned integer (u32). +This class extends the base TypeTag class and provides methods for serialization +and deserialization specific to the u32 type.

                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                      Implementation - BCS

                                                                                                                                                                                                                                                                                                                      • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                        Returns Uint8Array

                                                                                                                                                                                                                                                                                                                        the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                      • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                        Returns Hex

                                                                                                                                                                                                                                                                                                                        A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                      Implementation - Transactions

                                                                                                                                                                                                                                                                                                                      Constructors

                                                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagU64.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagU64.html new file mode 100644 index 000000000..716844bdb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagU64.html @@ -0,0 +1,70 @@ +TypeTagU64 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                        Class TypeTagU64

                                                                                                                                                                                                                                                                                                                        Represents a type tag for 64-bit unsigned integers (u64). +This class extends the base TypeTag class and provides methods for serialization and deserialization.

                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                        Implementation - BCS

                                                                                                                                                                                                                                                                                                                        • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                          Returns Uint8Array

                                                                                                                                                                                                                                                                                                                          the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                        • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                          Returns Hex

                                                                                                                                                                                                                                                                                                                          A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                        Implementation - Transactions

                                                                                                                                                                                                                                                                                                                        Constructors

                                                                                                                                                                                                                                                                                                                        Methods

                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagU8.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagU8.html new file mode 100644 index 000000000..1861dc938 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagU8.html @@ -0,0 +1,71 @@ +TypeTagU8 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                          Class TypeTagU8

                                                                                                                                                                                                                                                                                                                          Represents a type tag for an 8-bit unsigned integer (u8). +This class extends the base TypeTag class and provides methods +for serialization and deserialization specific to the u8 type.

                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                          Implementation - BCS

                                                                                                                                                                                                                                                                                                                          • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                            Returns Uint8Array

                                                                                                                                                                                                                                                                                                                            the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                          • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                            Returns Hex

                                                                                                                                                                                                                                                                                                                            A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                          Implementation - Transactions

                                                                                                                                                                                                                                                                                                                          Constructors

                                                                                                                                                                                                                                                                                                                          Methods

                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagVector.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagVector.html new file mode 100644 index 000000000..e076eb83c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/TypeTagVector.html @@ -0,0 +1,75 @@ +TypeTagVector | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                            Class TypeTagVector

                                                                                                                                                                                                                                                                                                                            Represents a vector type tag, which encapsulates a single type tag value. +This class extends the base TypeTag class and provides methods for serialization, +deserialization, and string representation of the vector type tag.

                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                            Implementation - BCS

                                                                                                                                                                                                                                                                                                                            • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                              Returns Uint8Array

                                                                                                                                                                                                                                                                                                                              the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                            • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                              Returns Hex

                                                                                                                                                                                                                                                                                                                              A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                            Implementation - Transactions

                                                                                                                                                                                                                                                                                                                            Constructors

                                                                                                                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                                                                                                                            • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                              Returns `vector<${string}>`

                                                                                                                                                                                                                                                                                                                              the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                            value: TypeTag
                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/U128.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/U128.html new file mode 100644 index 000000000..7e3001623 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/U128.html @@ -0,0 +1,33 @@ +U128 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                              Class U128

                                                                                                                                                                                                                                                                                                                              Represents a 128-bit unsigned integer value. +This class provides methods for serialization and deserialization +of U128 values, ensuring that the values are within the valid range.

                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                              Implements

                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                              Implementation - BCS

                                                                                                                                                                                                                                                                                                                              Implementation - Transactions

                                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                              Implementation - BCS

                                                                                                                                                                                                                                                                                                                              • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                Returns Hex

                                                                                                                                                                                                                                                                                                                                A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                              Implementation - Transactions

                                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                              • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                Returns string

                                                                                                                                                                                                                                                                                                                                the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                              value: bigint
                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/U16.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/U16.html new file mode 100644 index 000000000..6c07bdecd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/U16.html @@ -0,0 +1,33 @@ +U16 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                Class U16

                                                                                                                                                                                                                                                                                                                                Represents a 16-bit unsigned integer (U16) value. +This class extends the Serializable class and provides methods for serialization +and deserialization of the U16 value.

                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                Implements

                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                Implementation - BCS

                                                                                                                                                                                                                                                                                                                                Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                Constructors

                                                                                                                                                                                                                                                                                                                                Methods

                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                Implementation - BCS

                                                                                                                                                                                                                                                                                                                                • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                  Returns Hex

                                                                                                                                                                                                                                                                                                                                  A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                Constructors

                                                                                                                                                                                                                                                                                                                                Methods

                                                                                                                                                                                                                                                                                                                                • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                  Returns string

                                                                                                                                                                                                                                                                                                                                  the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                value: number
                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/U256.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/U256.html new file mode 100644 index 000000000..e9be8e89e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/U256.html @@ -0,0 +1,33 @@ +U256 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                  Class U256

                                                                                                                                                                                                                                                                                                                                  Represents a 256-bit unsigned integer (U256) that extends the Serializable class. +This class provides methods for serialization and deserialization of U256 values, +ensuring that the values are within the valid range.

                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                  Implements

                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                  Implementation - BCS

                                                                                                                                                                                                                                                                                                                                  Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                  Constructors

                                                                                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                  Implementation - BCS

                                                                                                                                                                                                                                                                                                                                  • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                    Returns Hex

                                                                                                                                                                                                                                                                                                                                    A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                  Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                  Constructors

                                                                                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                                                                                  • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                    Returns string

                                                                                                                                                                                                                                                                                                                                    the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                  value: bigint
                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/U32.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/U32.html new file mode 100644 index 000000000..0cb7cee69 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/U32.html @@ -0,0 +1,32 @@ +U32 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                    Class U32

                                                                                                                                                                                                                                                                                                                                    Represents a 32-bit unsigned integer (U32) that can be serialized and deserialized. +This class ensures that the value is within the valid range for a U32.

                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                    Implements

                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                    Implementation - BCS

                                                                                                                                                                                                                                                                                                                                    Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                    Constructors

                                                                                                                                                                                                                                                                                                                                    Methods

                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                    Implementation - BCS

                                                                                                                                                                                                                                                                                                                                    • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      Returns Hex

                                                                                                                                                                                                                                                                                                                                      A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                    Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                    Constructors

                                                                                                                                                                                                                                                                                                                                    Methods

                                                                                                                                                                                                                                                                                                                                    • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      Returns string

                                                                                                                                                                                                                                                                                                                                      the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                    value: number
                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/U64.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/U64.html new file mode 100644 index 000000000..659399045 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/U64.html @@ -0,0 +1,34 @@ +U64 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                      Class U64

                                                                                                                                                                                                                                                                                                                                      Represents a 64-bit unsigned integer (U64) and provides methods for serialization.

                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      This class ensures that the value is within the valid range for a U64 and provides +functionality to serialize the value for various use cases, including entry functions +and script functions.

                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                      Implements

                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                      Implementation - BCS

                                                                                                                                                                                                                                                                                                                                      Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                      Constructors

                                                                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                      Implementation - BCS

                                                                                                                                                                                                                                                                                                                                      • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                        Returns Hex

                                                                                                                                                                                                                                                                                                                                        A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                      Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                      Constructors

                                                                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                                                                      • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                        Returns string

                                                                                                                                                                                                                                                                                                                                        the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                      value: bigint
                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/U8.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/U8.html new file mode 100644 index 000000000..9213531d4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/U8.html @@ -0,0 +1,32 @@ +U8 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                        Class U8

                                                                                                                                                                                                                                                                                                                                        Represents an unsigned 8-bit integer (U8) value. +This class extends the Serializable class and provides methods for serialization and deserialization of U8 values.

                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                        Implements

                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                        Implementation - BCS

                                                                                                                                                                                                                                                                                                                                        Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                        Constructors

                                                                                                                                                                                                                                                                                                                                        Methods

                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                        Implementation - BCS

                                                                                                                                                                                                                                                                                                                                        • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                          Returns Hex

                                                                                                                                                                                                                                                                                                                                          A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                        Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                        Constructors

                                                                                                                                                                                                                                                                                                                                        Methods

                                                                                                                                                                                                                                                                                                                                        • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                          Returns string

                                                                                                                                                                                                                                                                                                                                          the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                        value: number
                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/WebAuthnSignature.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/WebAuthnSignature.html new file mode 100644 index 000000000..5644f224f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/WebAuthnSignature.html @@ -0,0 +1,27 @@ +WebAuthnSignature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                          Class WebAuthnSignature

                                                                                                                                                                                                                                                                                                                                          An abstract representation of a crypto signature, +associated with a specific signature scheme, e.g., Ed25519 or Secp256k1.

                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                          This class represents the product of signing a message directly from a +PrivateKey and can be verified against a CryptoPublicKey.

                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                          Implementation - BCS

                                                                                                                                                                                                                                                                                                                                          Implementation - Serialization

                                                                                                                                                                                                                                                                                                                                          Constructors

                                                                                                                                                                                                                                                                                                                                          Methods

                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                          Implementation - BCS

                                                                                                                                                                                                                                                                                                                                          • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                            Returns Hex

                                                                                                                                                                                                                                                                                                                                            A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                          Implementation - Serialization

                                                                                                                                                                                                                                                                                                                                          Constructors

                                                                                                                                                                                                                                                                                                                                          Methods

                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                          authenticatorData: Hex
                                                                                                                                                                                                                                                                                                                                          clientDataJSON: Hex
                                                                                                                                                                                                                                                                                                                                          signature: Hex
                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/ZeroKnowledgeSig.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/ZeroKnowledgeSig.html new file mode 100644 index 000000000..110d2d58d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/ZeroKnowledgeSig.html @@ -0,0 +1,36 @@ +ZeroKnowledgeSig | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                            Class ZeroKnowledgeSig

                                                                                                                                                                                                                                                                                                                                            Represents a zero-knowledge signature, encapsulating the proof and its associated metadata.

                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                            Implementation - BCS

                                                                                                                                                                                                                                                                                                                                            • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                              Returns Uint8Array

                                                                                                                                                                                                                                                                                                                                              the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                            • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                              Returns Hex

                                                                                                                                                                                                                                                                                                                                              A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                            Implementation - Serialization

                                                                                                                                                                                                                                                                                                                                            expHorizonSecs: number

                                                                                                                                                                                                                                                                                                                                            The max lifespan of the proof

                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            extraField?: string

                                                                                                                                                                                                                                                                                                                                            A key value pair on the JWT token that can be specified on the signature which would reveal the value on chain. +Can be used to assert identity or other attributes.

                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            overrideAudVal?: string

                                                                                                                                                                                                                                                                                                                                            The 'aud' value of the recovery service which is set when recovering an account.

                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            proof: ZkProof

                                                                                                                                                                                                                                                                                                                                            The proof

                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            trainingWheelsSignature?: EphemeralSignature

                                                                                                                                                                                                                                                                                                                                            The training wheels signature

                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            • Deserialize a ZeroKnowledgeSig object from its BCS serialization in bytes.

                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                                                                              • bytes: Uint8Array

                                                                                                                                                                                                                                                                                                                                                The bytes representing the serialized ZeroKnowledgeSig.

                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                              Returns ZeroKnowledgeSig

                                                                                                                                                                                                                                                                                                                                              ZeroKnowledgeSig - The deserialized ZeroKnowledgeSig object.

                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                            Constructors

                                                                                                                                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/classes/ZkProof.html b/docs/@aptos-labs/ts-sdk-7.0.0/classes/ZkProof.html new file mode 100644 index 000000000..f96a5c1e4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/classes/ZkProof.html @@ -0,0 +1,22 @@ +ZkProof | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                              Class ZkProof

                                                                                                                                                                                                                                                                                                                                              Represents a container for different types of zero-knowledge proofs.

                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                              Implementation - BCS

                                                                                                                                                                                                                                                                                                                                              Implementation - Serialization

                                                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                              Implementation - BCS

                                                                                                                                                                                                                                                                                                                                              • Serializes a Serializable value to its BCS representation. +This function is the TypeScript SDK equivalent of bcs::to_bytes in Move.

                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                Returns Uint8Array

                                                                                                                                                                                                                                                                                                                                                the BCS representation of the Serializable instance as a byte buffer.

                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                              • Converts the BCS-serialized bytes of a value into a Hex instance. +This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.

                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                Returns Hex

                                                                                                                                                                                                                                                                                                                                                A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.

                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                              Implementation - Serialization

                                                                                                                                                                                                                                                                                                                                              variant: Groth16

                                                                                                                                                                                                                                                                                                                                              Index of the underlying enum variant

                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                              • Returns the hex string representation of the Serializable value with the 0x prefix.

                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                Returns string

                                                                                                                                                                                                                                                                                                                                                the hex formatas a string prefixed by 0x.

                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                              proof: Proof
                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/AccountAuthenticatorVariant.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/AccountAuthenticatorVariant.html new file mode 100644 index 000000000..7f8746b98 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/AccountAuthenticatorVariant.html @@ -0,0 +1,9 @@ +AccountAuthenticatorVariant | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                Enumeration AccountAuthenticatorVariant

                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                Enumeration Members

                                                                                                                                                                                                                                                                                                                                                Abstraction: 5
                                                                                                                                                                                                                                                                                                                                                Ed25519: 0
                                                                                                                                                                                                                                                                                                                                                MultiEd25519: 1
                                                                                                                                                                                                                                                                                                                                                MultiKey: 3
                                                                                                                                                                                                                                                                                                                                                NoAccountAuthenticator: 4
                                                                                                                                                                                                                                                                                                                                                SingleKey: 2
                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/AddressInvalidReason.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/AddressInvalidReason.html new file mode 100644 index 000000000..76c5b2a0a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/AddressInvalidReason.html @@ -0,0 +1,10 @@ +AddressInvalidReason | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                  Enumeration AddressInvalidReason

                                                                                                                                                                                                                                                                                                                                                  Provides reasons for an address was invalid.

                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                  Enumeration Members

                                                                                                                                                                                                                                                                                                                                                  INCORRECT_NUMBER_OF_BYTES: "incorrect_number_of_bytes"
                                                                                                                                                                                                                                                                                                                                                  INVALID_HEX_CHARS: "invalid_hex_chars"
                                                                                                                                                                                                                                                                                                                                                  INVALID_PADDING_STRICTNESS: "INVALID_PADDING_STRICTNESS"
                                                                                                                                                                                                                                                                                                                                                  INVALID_PADDING_ZEROES: "INVALID_PADDING_ZEROES"
                                                                                                                                                                                                                                                                                                                                                  LEADING_ZERO_X_REQUIRED: "leading_zero_x_required"
                                                                                                                                                                                                                                                                                                                                                  LONG_FORM_REQUIRED_UNLESS_SPECIAL: "long_form_required_unless_special"
                                                                                                                                                                                                                                                                                                                                                  TOO_LONG: "too_long"
                                                                                                                                                                                                                                                                                                                                                  TOO_SHORT: "too_short"
                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/AnyPublicKeyVariant.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/AnyPublicKeyVariant.html new file mode 100644 index 000000000..7fb31cda1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/AnyPublicKeyVariant.html @@ -0,0 +1,10 @@ +AnyPublicKeyVariant | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                    Enumeration AnyPublicKeyVariant

                                                                                                                                                                                                                                                                                                                                                    Variants of public keys used in cryptographic operations.

                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                    Enumeration Members

                                                                                                                                                                                                                                                                                                                                                    Ed25519: 0
                                                                                                                                                                                                                                                                                                                                                    FederatedKeyless: 4
                                                                                                                                                                                                                                                                                                                                                    Keyless: 3
                                                                                                                                                                                                                                                                                                                                                    Secp256k1: 1
                                                                                                                                                                                                                                                                                                                                                    Secp256r1: 2
                                                                                                                                                                                                                                                                                                                                                    SlhDsaSha2_128s: 5

                                                                                                                                                                                                                                                                                                                                                    Post-quantum signature scheme (SLH-DSA-SHA2-128s). +Note: Full implementation not yet available in this SDK.

                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/AnySignatureVariant.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/AnySignatureVariant.html new file mode 100644 index 000000000..70bc3d764 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/AnySignatureVariant.html @@ -0,0 +1,9 @@ +AnySignatureVariant | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                      Enumeration AnySignatureVariant

                                                                                                                                                                                                                                                                                                                                                      Variants of signature types used for cryptographic operations.

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                      Enumeration Members

                                                                                                                                                                                                                                                                                                                                                      Ed25519: 0
                                                                                                                                                                                                                                                                                                                                                      Keyless: 3
                                                                                                                                                                                                                                                                                                                                                      Secp256k1: 1
                                                                                                                                                                                                                                                                                                                                                      SlhDsaSha2_128s: 4

                                                                                                                                                                                                                                                                                                                                                      Post-quantum signature scheme (SLH-DSA-SHA2-128s). +Note: Full implementation not yet available in this SDK.

                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      WebAuthn: 2
                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/AptosApiType.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/AptosApiType.html new file mode 100644 index 000000000..19a7ff85f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/AptosApiType.html @@ -0,0 +1,7 @@ +AptosApiType | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                        Enumeration AptosApiType

                                                                                                                                                                                                                                                                                                                                                        Types of API endpoints used for routing requests in the Aptos network.

                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                        Enumeration Members

                                                                                                                                                                                                                                                                                                                                                        Enumeration Members

                                                                                                                                                                                                                                                                                                                                                        FAUCET: "Faucet"
                                                                                                                                                                                                                                                                                                                                                        FULLNODE: "Fullnode"
                                                                                                                                                                                                                                                                                                                                                        INDEXER: "Indexer"
                                                                                                                                                                                                                                                                                                                                                        PEPPER: "Pepper"
                                                                                                                                                                                                                                                                                                                                                        PROVER: "Prover"
                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/DeriveScheme.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/DeriveScheme.html new file mode 100644 index 000000000..c7e84e719 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/DeriveScheme.html @@ -0,0 +1,12 @@ +DeriveScheme | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                          Enumeration DeriveScheme

                                                                                                                                                                                                                                                                                                                                                          Specifies the schemes for deriving account addresses from various data sources.

                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                          Enumeration Members

                                                                                                                                                                                                                                                                                                                                                          DeriveAuid: 251

                                                                                                                                                                                                                                                                                                                                                          Derives an address using an AUID, used for objects

                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          DeriveObjectAddressFromGuid: 253

                                                                                                                                                                                                                                                                                                                                                          Derives an address from a GUID, used for objects

                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          DeriveObjectAddressFromObject: 252

                                                                                                                                                                                                                                                                                                                                                          Derives an address from another object address

                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          DeriveObjectAddressFromSeed: 254

                                                                                                                                                                                                                                                                                                                                                          Derives an address from seed bytes, used for named objects

                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          DeriveResourceAccountAddress: 255

                                                                                                                                                                                                                                                                                                                                                          Derives an address from seed bytes, used for resource accounts

                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/EphemeralCertificateVariant.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/EphemeralCertificateVariant.html new file mode 100644 index 000000000..38b558ebb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/EphemeralCertificateVariant.html @@ -0,0 +1,3 @@ +EphemeralCertificateVariant | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                            Enumeration EphemeralCertificateVariant

                                                                                                                                                                                                                                                                                                                                                            Variants of ephemeral certificates used in secure transactions.

                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                            Enumeration Members

                                                                                                                                                                                                                                                                                                                                                            Enumeration Members

                                                                                                                                                                                                                                                                                                                                                            ZkProof: 0
                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/EphemeralPublicKeyVariant.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/EphemeralPublicKeyVariant.html new file mode 100644 index 000000000..e2f0193ab --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/EphemeralPublicKeyVariant.html @@ -0,0 +1,3 @@ +EphemeralPublicKeyVariant | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                              Enumeration EphemeralPublicKeyVariant

                                                                                                                                                                                                                                                                                                                                                              Variants of ephemeral public keys used in cryptographic operations.

                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                              Enumeration Members

                                                                                                                                                                                                                                                                                                                                                              Enumeration Members

                                                                                                                                                                                                                                                                                                                                                              Ed25519: 0
                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/EphemeralSignatureVariant.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/EphemeralSignatureVariant.html new file mode 100644 index 000000000..58f6f6e66 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/EphemeralSignatureVariant.html @@ -0,0 +1,3 @@ +EphemeralSignatureVariant | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                Enumeration EphemeralSignatureVariant

                                                                                                                                                                                                                                                                                                                                                                Variants of ephemeral signatures used for secure communication.

                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                Ed25519: 0
                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/ExpirationStatus.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/ExpirationStatus.html new file mode 100644 index 000000000..33cd75dfd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/ExpirationStatus.html @@ -0,0 +1,10 @@ +ExpirationStatus | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                  Enumeration ExpirationStatus

                                                                                                                                                                                                                                                                                                                                                                  The status of the name.

                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                  Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                  Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                  Active: "active"

                                                                                                                                                                                                                                                                                                                                                                  The name is in good standing.

                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  Expired: "expired"

                                                                                                                                                                                                                                                                                                                                                                  The name no longer functions as a primary or target name. It is open to +being claimed by the public.

                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  InGracePeriod: "in_grace_period"

                                                                                                                                                                                                                                                                                                                                                                  The name is past it's expiration date, but only claimable by the current +owner of the name. It does not function as a primary or target name.

                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/HexInvalidReason.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/HexInvalidReason.html new file mode 100644 index 000000000..9995de068 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/HexInvalidReason.html @@ -0,0 +1,5 @@ +HexInvalidReason | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                    Enumeration HexInvalidReason

                                                                                                                                                                                                                                                                                                                                                                    Provides reasons for parsing failures related to hexadecimal values.

                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                    Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                    INVALID_HEX_CHARS: "invalid_hex_chars"
                                                                                                                                                                                                                                                                                                                                                                    INVALID_LENGTH: "invalid_length"
                                                                                                                                                                                                                                                                                                                                                                    TOO_SHORT: "too_short"
                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/KeyType.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/KeyType.html new file mode 100644 index 000000000..3f831b713 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/KeyType.html @@ -0,0 +1,3 @@ +KeyType | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                      Enumeration KeyType

                                                                                                                                                                                                                                                                                                                                                                      Supported key types and their associated seeds.

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                      Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                      Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                      ED25519: "ed25519 seed"
                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/KeylessErrorCategory.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/KeylessErrorCategory.html new file mode 100644 index 000000000..77c75c082 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/KeylessErrorCategory.html @@ -0,0 +1,7 @@ +KeylessErrorCategory | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                        Enumeration KeylessErrorCategory

                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                        Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                        API_ERROR: 0
                                                                                                                                                                                                                                                                                                                                                                        EXTERNAL_API_ERROR: 1
                                                                                                                                                                                                                                                                                                                                                                        INVALID_SIGNATURE: 4
                                                                                                                                                                                                                                                                                                                                                                        INVALID_STATE: 3
                                                                                                                                                                                                                                                                                                                                                                        SESSION_EXPIRED: 2
                                                                                                                                                                                                                                                                                                                                                                        UNKNOWN: 5
                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/KeylessErrorResolutionTip.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/KeylessErrorResolutionTip.html new file mode 100644 index 000000000..cbb32d26d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/KeylessErrorResolutionTip.html @@ -0,0 +1,10 @@ +KeylessErrorResolutionTip | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                          Enumeration KeylessErrorResolutionTip

                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                          Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                          CALL_PRECHECK: "Call `await account.checkKeylessAccountValidity()` to wait for asyncronous changes and check for account validity before signing or serializing."
                                                                                                                                                                                                                                                                                                                                                                          JOIN_SUPPORT_GROUP: "For support join the telegram group at https://t.me/+h5CN-W35yUFiYzkx"
                                                                                                                                                                                                                                                                                                                                                                          RATE_LIMIT_EXCEEDED: "Cache the keyless account and reuse it to avoid making too many requests. Keyless accounts are valid until either the EphemeralKeyPair expires, when the JWK is rotated, or when the proof verifying key is changed, whichever comes soonest."
                                                                                                                                                                                                                                                                                                                                                                          REAUTHENTICATE: "Re-authentiate to continue using your keyless account"
                                                                                                                                                                                                                                                                                                                                                                          REAUTHENTICATE_UNSURE: "Try re-authentiating. If the error persists join the telegram group at https://t.me/+h5CN-W35yUFiYzkx for further support"
                                                                                                                                                                                                                                                                                                                                                                          REINSTANTIATE: "Try instantiating the account again. Avoid manipulating the account object directly"
                                                                                                                                                                                                                                                                                                                                                                          SERVER_ERROR: "Try again later. See aptosApiError error for more context. For additional support join the telegram group at https://t.me/+h5CN-W35yUFiYzkx"
                                                                                                                                                                                                                                                                                                                                                                          UNKNOWN: "Error unknown. For support join the telegram group at https://t.me/+h5CN-W35yUFiYzkx"
                                                                                                                                                                                                                                                                                                                                                                          UPDATE_REQUEST_PARAMS: "Update the invalid request parameters and reauthenticate."
                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/KeylessErrorType.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/KeylessErrorType.html new file mode 100644 index 000000000..454f1b3f2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/KeylessErrorType.html @@ -0,0 +1,35 @@ +KeylessErrorType | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                            Enumeration KeylessErrorType

                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                            Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                            ASYNC_PROOF_FETCH_FAILED: 2
                                                                                                                                                                                                                                                                                                                                                                            EPHEMERAL_KEY_PAIR_EXPIRED: 0
                                                                                                                                                                                                                                                                                                                                                                            EPHEMERAL_SIGNATURE_VERIFICATION_FAILED: 29
                                                                                                                                                                                                                                                                                                                                                                            FULL_NODE_CONFIG_LOOKUP_ERROR: 22
                                                                                                                                                                                                                                                                                                                                                                            FULL_NODE_JWKS_LOOKUP_ERROR: 24
                                                                                                                                                                                                                                                                                                                                                                            FULL_NODE_OTHER: 25
                                                                                                                                                                                                                                                                                                                                                                            FULL_NODE_VERIFICATION_KEY_LOOKUP_ERROR: 23
                                                                                                                                                                                                                                                                                                                                                                            INVALID_EXPIRY_HORIZON: 11
                                                                                                                                                                                                                                                                                                                                                                            INVALID_JWT_FEDERATED_ISS_NOT_SUPPORTED: 8
                                                                                                                                                                                                                                                                                                                                                                            INVALID_JWT_ISS_NOT_RECOGNIZED: 7
                                                                                                                                                                                                                                                                                                                                                                            INVALID_JWT_JWK_NOT_FOUND: 6
                                                                                                                                                                                                                                                                                                                                                                            INVALID_JWT_SIG: 5
                                                                                                                                                                                                                                                                                                                                                                            INVALID_PROOF_VERIFICATION_FAILED: 3
                                                                                                                                                                                                                                                                                                                                                                            INVALID_PROOF_VERIFICATION_KEY_NOT_FOUND: 4
                                                                                                                                                                                                                                                                                                                                                                            INVALID_TW_SIG_PUBLIC_KEY_NOT_FOUND: 10
                                                                                                                                                                                                                                                                                                                                                                            INVALID_TW_SIG_VERIFICATION_FAILED: 9
                                                                                                                                                                                                                                                                                                                                                                            JWK_FETCH_FAILED: 13
                                                                                                                                                                                                                                                                                                                                                                            JWK_FETCH_FAILED_FEDERATED: 14
                                                                                                                                                                                                                                                                                                                                                                            JWT_PARSING_ERROR: 12
                                                                                                                                                                                                                                                                                                                                                                            MAX_EXPIRY_HORIZON_EXCEEDED: 28
                                                                                                                                                                                                                                                                                                                                                                            PEPPER_SERVICE_BAD_REQUEST: 17
                                                                                                                                                                                                                                                                                                                                                                            PEPPER_SERVICE_INTERNAL_ERROR: 16
                                                                                                                                                                                                                                                                                                                                                                            PEPPER_SERVICE_OTHER: 18
                                                                                                                                                                                                                                                                                                                                                                            PROOF_NOT_FOUND: 1
                                                                                                                                                                                                                                                                                                                                                                            PROOF_VERIFICATION_FAILED: 32
                                                                                                                                                                                                                                                                                                                                                                            PROVER_SERVICE_BAD_REQUEST: 20
                                                                                                                                                                                                                                                                                                                                                                            PROVER_SERVICE_INTERNAL_ERROR: 19
                                                                                                                                                                                                                                                                                                                                                                            PROVER_SERVICE_OTHER: 21
                                                                                                                                                                                                                                                                                                                                                                            RATE_LIMIT_EXCEEDED: 15
                                                                                                                                                                                                                                                                                                                                                                            SIGNATURE_EXPIRED: 27
                                                                                                                                                                                                                                                                                                                                                                            SIGNATURE_TYPE_INVALID: 26
                                                                                                                                                                                                                                                                                                                                                                            TRAINING_WHEELS_SIGNATURE_MISSING: 30
                                                                                                                                                                                                                                                                                                                                                                            TRAINING_WHEELS_SIGNATURE_VERIFICATION_FAILED: 31
                                                                                                                                                                                                                                                                                                                                                                            UNKNOWN: 33
                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/MimeType.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/MimeType.html new file mode 100644 index 000000000..3598bc6ca --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/MimeType.html @@ -0,0 +1,9 @@ +MimeType | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                              Enumeration MimeType

                                                                                                                                                                                                                                                                                                                                                                              Different MIME types used for data interchange in transactions and responses.

                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                              Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                              BCS: "application/x-bcs"

                                                                                                                                                                                                                                                                                                                                                                              BCS representation, used for accept type BCS output

                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              BCS_SIGNED_TRANSACTION: "application/x.aptos.signed_transaction+bcs"

                                                                                                                                                                                                                                                                                                                                                                              BCS representation, used for transaction submission in BCS input

                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              BCS_VIEW_FUNCTION: "application/x.aptos.view_function+bcs"
                                                                                                                                                                                                                                                                                                                                                                              JSON: "application/json"

                                                                                                                                                                                                                                                                                                                                                                              JSON representation, used for transaction submission and accept type JSON output

                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/MoveAbility.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/MoveAbility.html new file mode 100644 index 000000000..5c2a8c56b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/MoveAbility.html @@ -0,0 +1,6 @@ +MoveAbility | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                Enumeration MoveAbility

                                                                                                                                                                                                                                                                                                                                                                                Abilities related to moving items within the system.

                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                COPY: "copy"
                                                                                                                                                                                                                                                                                                                                                                                DROP: "drop"
                                                                                                                                                                                                                                                                                                                                                                                KEY: "key"
                                                                                                                                                                                                                                                                                                                                                                                STORE: "store"
                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/MoveFunctionVisibility.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/MoveFunctionVisibility.html new file mode 100644 index 000000000..176386691 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/MoveFunctionVisibility.html @@ -0,0 +1,5 @@ +MoveFunctionVisibility | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                  Enumeration MoveFunctionVisibility

                                                                                                                                                                                                                                                                                                                                                                                  Specifies the visibility levels for move functions, controlling access permissions.

                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                  Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                  Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                  FRIEND: "friend"
                                                                                                                                                                                                                                                                                                                                                                                  PRIVATE: "private"
                                                                                                                                                                                                                                                                                                                                                                                  PUBLIC: "public"
                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/Network.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/Network.html new file mode 100644 index 000000000..d02f849e9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/Network.html @@ -0,0 +1,9 @@ +Network | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                    Enumeration Network

                                                                                                                                                                                                                                                                                                                                                                                    Different network environments for connecting to services, ranging from production to development setups.

                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                    Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                    Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                    CUSTOM: "custom"
                                                                                                                                                                                                                                                                                                                                                                                    DEVNET: "devnet"
                                                                                                                                                                                                                                                                                                                                                                                    LOCAL: "local"
                                                                                                                                                                                                                                                                                                                                                                                    MAINNET: "mainnet"
                                                                                                                                                                                                                                                                                                                                                                                    NETNA: "netna"
                                                                                                                                                                                                                                                                                                                                                                                    SHELBYNET: "shelbynet"
                                                                                                                                                                                                                                                                                                                                                                                    TESTNET: "testnet"
                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/PrivateCode.CurrentAptosNamesSelectColumn.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/PrivateCode.CurrentAptosNamesSelectColumn.html new file mode 100644 index 000000000..a780cf548 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/PrivateCode.CurrentAptosNamesSelectColumn.html @@ -0,0 +1,28 @@ +CurrentAptosNamesSelectColumn | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                      Enumeration CurrentAptosNamesSelectColumn

                                                                                                                                                                                                                                                                                                                                                                                      select columns of table "current_aptos_names"

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                      Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                      Domain: "domain"

                                                                                                                                                                                                                                                                                                                                                                                      column name

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      DomainExpirationTimestamp: "domain_expiration_timestamp"

                                                                                                                                                                                                                                                                                                                                                                                      column name

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      DomainWithSuffix: "domain_with_suffix"

                                                                                                                                                                                                                                                                                                                                                                                      column name

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      ExpirationTimestamp: "expiration_timestamp"

                                                                                                                                                                                                                                                                                                                                                                                      column name

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      IsActive: "is_active"

                                                                                                                                                                                                                                                                                                                                                                                      column name

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      IsPrimary: "is_primary"

                                                                                                                                                                                                                                                                                                                                                                                      column name

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      LastTransactionVersion: "last_transaction_version"

                                                                                                                                                                                                                                                                                                                                                                                      column name

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      OwnerAddress: "owner_address"

                                                                                                                                                                                                                                                                                                                                                                                      column name

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      RegisteredAddress: "registered_address"

                                                                                                                                                                                                                                                                                                                                                                                      column name

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      Subdomain: "subdomain"

                                                                                                                                                                                                                                                                                                                                                                                      column name

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      SubdomainExpirationPolicy: "subdomain_expiration_policy"

                                                                                                                                                                                                                                                                                                                                                                                      column name

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      TokenName: "token_name"

                                                                                                                                                                                                                                                                                                                                                                                      column name

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      TokenStandard: "token_standard"

                                                                                                                                                                                                                                                                                                                                                                                      column name

                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html new file mode 100644 index 000000000..cc24c4aa1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html @@ -0,0 +1,6 @@ +CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                        Enumeration CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns

                                                                                                                                                                                                                                                                                                                                                                                        select "current_aptos_names_aggregate_bool_exp_bool_and_arguments_columns" columns of table "current_aptos_names"

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                        Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                        Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                        IsActive: "is_active"

                                                                                                                                                                                                                                                                                                                                                                                        column name

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        IsPrimary: "is_primary"

                                                                                                                                                                                                                                                                                                                                                                                        column name

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html new file mode 100644 index 000000000..17fe1b80c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html @@ -0,0 +1,6 @@ +CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                          Enumeration CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns

                                                                                                                                                                                                                                                                                                                                                                                          select "current_aptos_names_aggregate_bool_exp_bool_or_arguments_columns" columns of table "current_aptos_names"

                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                          Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                          Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                          IsActive: "is_active"

                                                                                                                                                                                                                                                                                                                                                                                          column name

                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          IsPrimary: "is_primary"

                                                                                                                                                                                                                                                                                                                                                                                          column name

                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/PrivateKeyVariants.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/PrivateKeyVariants.html new file mode 100644 index 000000000..562cc2f03 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/PrivateKeyVariants.html @@ -0,0 +1,6 @@ +PrivateKeyVariants | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                            Enumeration PrivateKeyVariants

                                                                                                                                                                                                                                                                                                                                                                                            Variants of private keys that can comply with the AIP-80 standard. +https://github.com/aptos-foundation/AIPs/blob/main/aips/aip-80.md

                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                            Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                            Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                            Ed25519: "ed25519"
                                                                                                                                                                                                                                                                                                                                                                                            Secp256k1: "secp256k1"
                                                                                                                                                                                                                                                                                                                                                                                            Secp256r1: "secp256r1"
                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/ProcessorType.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/ProcessorType.html new file mode 100644 index 000000000..760d27548 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/ProcessorType.html @@ -0,0 +1,12 @@ +ProcessorType | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                              Enumeration ProcessorType

                                                                                                                                                                                                                                                                                                                                                                                              Supported processor types for the indexer API, sourced from the processor_status table in the indexer database. +https://cloud.hasura.io/public/graphiql?endpoint=https://api.mainnet.aptoslabs.com/v1/graphql

                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                              Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                              ACCOUNT_RESTORATION_PROCESSOR: "account_restoration_processor"
                                                                                                                                                                                                                                                                                                                                                                                              ACCOUNT_TRANSACTION_PROCESSOR: "account_transactions_processor"
                                                                                                                                                                                                                                                                                                                                                                                              DEFAULT: "default_processor"
                                                                                                                                                                                                                                                                                                                                                                                              EVENTS_PROCESSOR: "events_processor"
                                                                                                                                                                                                                                                                                                                                                                                              FUNGIBLE_ASSET_PROCESSOR: "fungible_asset_processor"
                                                                                                                                                                                                                                                                                                                                                                                              OBJECT_PROCESSOR: "objects_processor"
                                                                                                                                                                                                                                                                                                                                                                                              STAKE_PROCESSOR: "stake_processor"
                                                                                                                                                                                                                                                                                                                                                                                              TOKEN_V2_PROCESSOR: "token_v2_processor"
                                                                                                                                                                                                                                                                                                                                                                                              USER_TRANSACTION_PROCESSOR: "user_transaction_processor"
                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/RoleType.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/RoleType.html new file mode 100644 index 000000000..2e59208d6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/RoleType.html @@ -0,0 +1,4 @@ +RoleType | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                Enumeration RoleType

                                                                                                                                                                                                                                                                                                                                                                                                Roles that can be assigned within the system, indicating different levels of access and functionality.

                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                FULL_NODE: "full_node"
                                                                                                                                                                                                                                                                                                                                                                                                VALIDATOR: "validator"
                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/ScriptTransactionArgumentVariants.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/ScriptTransactionArgumentVariants.html new file mode 100644 index 000000000..00444a638 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/ScriptTransactionArgumentVariants.html @@ -0,0 +1,19 @@ +ScriptTransactionArgumentVariants | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                  Enumeration ScriptTransactionArgumentVariants

                                                                                                                                                                                                                                                                                                                                                                                                  Variants of script transaction arguments used in Rust, encompassing various data types for transaction processing. +https://github.com/aptos-labs/aptos-core/blob/main/third_party/move/move-core/types/src/transaction_argument.rs#L11

                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                  Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                  Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                  Address: 3
                                                                                                                                                                                                                                                                                                                                                                                                  Bool: 5
                                                                                                                                                                                                                                                                                                                                                                                                  I128: 14
                                                                                                                                                                                                                                                                                                                                                                                                  I16: 11
                                                                                                                                                                                                                                                                                                                                                                                                  I256: 15
                                                                                                                                                                                                                                                                                                                                                                                                  I32: 12
                                                                                                                                                                                                                                                                                                                                                                                                  I64: 13
                                                                                                                                                                                                                                                                                                                                                                                                  I8: 10
                                                                                                                                                                                                                                                                                                                                                                                                  Serialized: 9
                                                                                                                                                                                                                                                                                                                                                                                                  U128: 2
                                                                                                                                                                                                                                                                                                                                                                                                  U16: 6
                                                                                                                                                                                                                                                                                                                                                                                                  U256: 8
                                                                                                                                                                                                                                                                                                                                                                                                  U32: 7
                                                                                                                                                                                                                                                                                                                                                                                                  U64: 1
                                                                                                                                                                                                                                                                                                                                                                                                  U8: 0
                                                                                                                                                                                                                                                                                                                                                                                                  U8Vector: 4
                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/SigningScheme.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/SigningScheme.html new file mode 100644 index 000000000..dd5bb0271 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/SigningScheme.html @@ -0,0 +1,9 @@ +SigningScheme | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                    Enumeration SigningScheme

                                                                                                                                                                                                                                                                                                                                                                                                    Different schemes for signing keys used in cryptographic operations.

                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                    Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                    Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                    Ed25519: 0

                                                                                                                                                                                                                                                                                                                                                                                                    For Ed25519PublicKey

                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    MultiEd25519: 1

                                                                                                                                                                                                                                                                                                                                                                                                    For MultiEd25519PublicKey

                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    MultiKey: 3
                                                                                                                                                                                                                                                                                                                                                                                                    SingleKey: 2

                                                                                                                                                                                                                                                                                                                                                                                                    For SingleKey ecdsa

                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/SigningSchemeInput.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/SigningSchemeInput.html new file mode 100644 index 000000000..eaeeee356 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/SigningSchemeInput.html @@ -0,0 +1,6 @@ +SigningSchemeInput | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                      Enumeration SigningSchemeInput

                                                                                                                                                                                                                                                                                                                                                                                                      Specifies the signing schemes available for cryptographic operations.

                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                      Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                      Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                      Ed25519: 0

                                                                                                                                                                                                                                                                                                                                                                                                      For Ed25519PublicKey

                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      Secp256k1Ecdsa: 2

                                                                                                                                                                                                                                                                                                                                                                                                      For Secp256k1Ecdsa

                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/SubdomainExpirationPolicy.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/SubdomainExpirationPolicy.html new file mode 100644 index 000000000..e195ef092 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/SubdomainExpirationPolicy.html @@ -0,0 +1,7 @@ +SubdomainExpirationPolicy | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                        Enumeration SubdomainExpirationPolicy

                                                                                                                                                                                                                                                                                                                                                                                                        Policy for determining how subdomains expire in relation to their parent domain.

                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                        Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                        Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                        FollowsDomain: 1

                                                                                                                                                                                                                                                                                                                                                                                                        The subdomain will expire at the same time as the domain.

                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        Independent: 0

                                                                                                                                                                                                                                                                                                                                                                                                        The subdomain will expire independently of the domain. The owner of the +domain can manually set when the subdomain expires.

                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionAuthenticatorVariant.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionAuthenticatorVariant.html new file mode 100644 index 000000000..9b4c24b91 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionAuthenticatorVariant.html @@ -0,0 +1,8 @@ +TransactionAuthenticatorVariant | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                          Enumeration TransactionAuthenticatorVariant

                                                                                                                                                                                                                                                                                                                                                                                                          Variants of transaction authenticators used in the system. +https://github.com/aptos-labs/aptos-core/blob/main/types/src/transaction/authenticator.rs#L44

                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                          Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                          Ed25519: 0
                                                                                                                                                                                                                                                                                                                                                                                                          FeePayer: 3
                                                                                                                                                                                                                                                                                                                                                                                                          MultiAgent: 2
                                                                                                                                                                                                                                                                                                                                                                                                          MultiEd25519: 1
                                                                                                                                                                                                                                                                                                                                                                                                          SingleSender: 4
                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionExecutableVariants.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionExecutableVariants.html new file mode 100644 index 000000000..d035ee90c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionExecutableVariants.html @@ -0,0 +1,7 @@ +TransactionExecutableVariants | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                            Enumeration TransactionExecutableVariants

                                                                                                                                                                                                                                                                                                                                                                                                            Executable types for transactions, which can be either a script or an entry function.

                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                            Empty is reserved for Multisig voting transactions, which do not have an executable payload. +https://github.com/aptos-labs/aptos-core/blob/main/types/src/transaction/mod.rs#L685

                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                            Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                            Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                            Empty: 2
                                                                                                                                                                                                                                                                                                                                                                                                            EntryFunction: 1
                                                                                                                                                                                                                                                                                                                                                                                                            Script: 0
                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionExtraConfigVariants.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionExtraConfigVariants.html new file mode 100644 index 000000000..ab64b1679 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionExtraConfigVariants.html @@ -0,0 +1,4 @@ +TransactionExtraConfigVariants | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                              Enumeration TransactionExtraConfigVariants

                                                                                                                                                                                                                                                                                                                                                                                                              Variants of transaction extra configurations, which can include additional settings or parameters. +https://github.com/aptos-labs/aptos-core/blob/main/types/src/transaction/mod.rs#L737

                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                              Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                              V1 +

                                                                                                                                                                                                                                                                                                                                                                                                              Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                              V1: 0
                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionInnerPayloadVariants.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionInnerPayloadVariants.html new file mode 100644 index 000000000..342113308 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionInnerPayloadVariants.html @@ -0,0 +1,4 @@ +TransactionInnerPayloadVariants | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                Enumeration TransactionInnerPayloadVariants

                                                                                                                                                                                                                                                                                                                                                                                                                The inner payload type to support orderless transactions and all future transaction types. +https://github.com/aptos-labs/aptos-core/blob/main/types/src/transaction/mod.rs#L478

                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                                V1 +

                                                                                                                                                                                                                                                                                                                                                                                                                Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                                V1: 0
                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionPayloadVariants.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionPayloadVariants.html new file mode 100644 index 000000000..bc942d43b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionPayloadVariants.html @@ -0,0 +1,7 @@ +TransactionPayloadVariants | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                  Enumeration TransactionPayloadVariants

                                                                                                                                                                                                                                                                                                                                                                                                                  The payload for various transaction types in the system. +https://github.com/aptos-labs/aptos-core/blob/main/types/src/transaction/mod.rs#L478

                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                  Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                                  Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                                  EntryFunction: 2
                                                                                                                                                                                                                                                                                                                                                                                                                  Multisig: 3
                                                                                                                                                                                                                                                                                                                                                                                                                  Payload: 4
                                                                                                                                                                                                                                                                                                                                                                                                                  Script: 0
                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionResponseType.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionResponseType.html new file mode 100644 index 000000000..2ec67b39a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionResponseType.html @@ -0,0 +1,9 @@ +TransactionResponseType | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                    Enumeration TransactionResponseType

                                                                                                                                                                                                                                                                                                                                                                                                                    Different types of transaction responses that can occur in the system.

                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                    Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                                    BlockEpilogue: "block_epilogue_transaction"
                                                                                                                                                                                                                                                                                                                                                                                                                    BlockMetadata: "block_metadata_transaction"
                                                                                                                                                                                                                                                                                                                                                                                                                    Genesis: "genesis_transaction"
                                                                                                                                                                                                                                                                                                                                                                                                                    Pending: "pending_transaction"
                                                                                                                                                                                                                                                                                                                                                                                                                    StateCheckpoint: "state_checkpoint_transaction"
                                                                                                                                                                                                                                                                                                                                                                                                                    User: "user_transaction"
                                                                                                                                                                                                                                                                                                                                                                                                                    Validator: "validator_transaction"
                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionVariants.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionVariants.html new file mode 100644 index 000000000..4938edf6a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionVariants.html @@ -0,0 +1,5 @@ +TransactionVariants | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                      Enumeration TransactionVariants

                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                      Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                                      FeePayerTransaction: 1
                                                                                                                                                                                                                                                                                                                                                                                                                      MultiAgentTransaction: 0
                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionWorkerEventsEnum.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionWorkerEventsEnum.html new file mode 100644 index 000000000..b946fd4c3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TransactionWorkerEventsEnum.html @@ -0,0 +1,7 @@ +TransactionWorkerEventsEnum | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                        Enumeration TransactionWorkerEventsEnum

                                                                                                                                                                                                                                                                                                                                                                                                                        Events emitted by the transaction worker during its operation, allowing the dapp to respond to various transaction states.

                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                        Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                                        ExecutionFinish: "executionFinish"
                                                                                                                                                                                                                                                                                                                                                                                                                        TransactionExecuted: "transactionExecuted"
                                                                                                                                                                                                                                                                                                                                                                                                                        TransactionExecutionFailed: "transactionExecutionFailed"
                                                                                                                                                                                                                                                                                                                                                                                                                        TransactionSendFailed: "transactionSendFailed"
                                                                                                                                                                                                                                                                                                                                                                                                                        TransactionSent: "transactionSent"
                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/TypeTagParserErrorType.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TypeTagParserErrorType.html new file mode 100644 index 000000000..60413be2a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TypeTagParserErrorType.html @@ -0,0 +1,16 @@ +TypeTagParserErrorType | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                          Enumeration TypeTagParserErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                          Error types related to parsing type tags, indicating various issues encountered during the parsing process.

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                          Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                                          InvalidAddress: "struct address must be valid"
                                                                                                                                                                                                                                                                                                                                                                                                                          InvalidModuleNameCharacter: "module name must only contain alphanumeric or '_' characters"
                                                                                                                                                                                                                                                                                                                                                                                                                          InvalidStructNameCharacter: "struct name must only contain alphanumeric or '_' characters"
                                                                                                                                                                                                                                                                                                                                                                                                                          InvalidTypeTag: "unknown type"
                                                                                                                                                                                                                                                                                                                                                                                                                          MissingTypeArgument: "no type argument before ','"
                                                                                                                                                                                                                                                                                                                                                                                                                          MissingTypeArgumentClose: "no matching '>' for '<'"
                                                                                                                                                                                                                                                                                                                                                                                                                          TypeArgumentCountMismatch: "type argument count doesn't match expected amount"
                                                                                                                                                                                                                                                                                                                                                                                                                          UnexpectedComma: "unexpected ','"
                                                                                                                                                                                                                                                                                                                                                                                                                          UnexpectedGenericType: "unexpected generic type"
                                                                                                                                                                                                                                                                                                                                                                                                                          UnexpectedPrimitiveTypeArguments: "primitive types not expected to have type arguments"
                                                                                                                                                                                                                                                                                                                                                                                                                          UnexpectedStructFormat: "unexpected struct format, must be of the form 0xaddress::module_name::struct_name"
                                                                                                                                                                                                                                                                                                                                                                                                                          UnexpectedTypeArgumentClose: "unexpected '>'"
                                                                                                                                                                                                                                                                                                                                                                                                                          UnexpectedVectorTypeArgumentCount: "vector type expected to have exactly one type argument"
                                                                                                                                                                                                                                                                                                                                                                                                                          UnexpectedWhitespaceCharacter: "unexpected whitespace character"
                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/TypeTagVariants.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TypeTagVariants.html new file mode 100644 index 000000000..15fabc0b8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/TypeTagVariants.html @@ -0,0 +1,22 @@ +TypeTagVariants | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                            Enumeration TypeTagVariants

                                                                                                                                                                                                                                                                                                                                                                                                                            Variants of type tags used in the system, encompassing various data types and structures. +https://github.com/aptos-labs/aptos-core/blob/main/third_party/move/move-core/types/src/language_storage.rs#L27

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                            Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                                            Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                                            Address: 4
                                                                                                                                                                                                                                                                                                                                                                                                                            Bool: 0
                                                                                                                                                                                                                                                                                                                                                                                                                            Generic: 255
                                                                                                                                                                                                                                                                                                                                                                                                                            I128: 15
                                                                                                                                                                                                                                                                                                                                                                                                                            I16: 12
                                                                                                                                                                                                                                                                                                                                                                                                                            I256: 16
                                                                                                                                                                                                                                                                                                                                                                                                                            I32: 13
                                                                                                                                                                                                                                                                                                                                                                                                                            I64: 14
                                                                                                                                                                                                                                                                                                                                                                                                                            I8: 11
                                                                                                                                                                                                                                                                                                                                                                                                                            Reference: 254
                                                                                                                                                                                                                                                                                                                                                                                                                            Signer: 5
                                                                                                                                                                                                                                                                                                                                                                                                                            Struct: 7
                                                                                                                                                                                                                                                                                                                                                                                                                            U128: 3
                                                                                                                                                                                                                                                                                                                                                                                                                            U16: 8
                                                                                                                                                                                                                                                                                                                                                                                                                            U256: 10
                                                                                                                                                                                                                                                                                                                                                                                                                            U32: 9
                                                                                                                                                                                                                                                                                                                                                                                                                            U64: 2
                                                                                                                                                                                                                                                                                                                                                                                                                            U8: 1
                                                                                                                                                                                                                                                                                                                                                                                                                            Vector: 6
                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/enums/ZkpVariant.html b/docs/@aptos-labs/ts-sdk-7.0.0/enums/ZkpVariant.html new file mode 100644 index 000000000..6780d6165 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/enums/ZkpVariant.html @@ -0,0 +1,3 @@ +ZkpVariant | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                              Enumeration ZkpVariant

                                                                                                                                                                                                                                                                                                                                                                                                                              Variants of zero-knowledge proofs used in cryptographic operations.

                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                              Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                                              Enumeration Members

                                                                                                                                                                                                                                                                                                                                                                                                                              Groth16: 0
                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.deserialize.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.deserialize.html new file mode 100644 index 000000000..6d6d2b878 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.deserialize.html @@ -0,0 +1 @@ +deserialize | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                Function deserialize

                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.ed25519AccountFromHex.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.ed25519AccountFromHex.html new file mode 100644 index 000000000..a150d0dc5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.ed25519AccountFromHex.html @@ -0,0 +1 @@ +ed25519AccountFromHex | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                  Function ed25519AccountFromHex

                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.federatedKeylessAccountFromHex.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.federatedKeylessAccountFromHex.html new file mode 100644 index 000000000..b97f5b962 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.federatedKeylessAccountFromHex.html @@ -0,0 +1 @@ +federatedKeylessAccountFromHex | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                    Function federatedKeylessAccountFromHex

                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.fromBytes.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.fromBytes.html new file mode 100644 index 000000000..fb04c8d14 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.fromBytes.html @@ -0,0 +1 @@ +fromBytes | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                      Function fromBytes

                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.fromHex.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.fromHex.html new file mode 100644 index 000000000..df6cc8836 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.fromHex.html @@ -0,0 +1 @@ +fromHex | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                        Function fromHex

                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.keylessAccountFromHex.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.keylessAccountFromHex.html new file mode 100644 index 000000000..26ca68e3c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.keylessAccountFromHex.html @@ -0,0 +1 @@ +keylessAccountFromHex | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                          Function keylessAccountFromHex

                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.multiKeyAccountFromHex.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.multiKeyAccountFromHex.html new file mode 100644 index 000000000..885d19b68 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.multiKeyAccountFromHex.html @@ -0,0 +1 @@ +multiKeyAccountFromHex | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                            Function multiKeyAccountFromHex

                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.singleKeyAccountFromHex.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.singleKeyAccountFromHex.html new file mode 100644 index 000000000..bc6284b4b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.singleKeyAccountFromHex.html @@ -0,0 +1 @@ +singleKeyAccountFromHex | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                              Function singleKeyAccountFromHex

                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.toBytes.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.toBytes.html new file mode 100644 index 000000000..388d2fcca --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.toBytes.html @@ -0,0 +1 @@ +toBytes | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                Function toBytes

                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.toHexString.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.toHexString.html new file mode 100644 index 000000000..ceff968be --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.toHexString.html @@ -0,0 +1 @@ +toHexString | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function toHexString

                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.toHexStringWithoutPrefix.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.toHexStringWithoutPrefix.html new file mode 100644 index 000000000..ae7f19a94 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/AccountUtils.toHexStringWithoutPrefix.html @@ -0,0 +1 @@ +toHexStringWithoutPrefix | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Function toHexStringWithoutPrefix

                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/CKDPriv.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/CKDPriv.html new file mode 100644 index 000000000..c3c3562cd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/CKDPriv.html @@ -0,0 +1,2 @@ +CKDPriv | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function CKDPriv

                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/anyPublicKeyVariantToString.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/anyPublicKeyVariantToString.html new file mode 100644 index 000000000..7d26d09eb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/anyPublicKeyVariantToString.html @@ -0,0 +1 @@ +anyPublicKeyVariantToString | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function anyPublicKeyVariantToString

                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/aptosCoinStructTag.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/aptosCoinStructTag.html new file mode 100644 index 000000000..180d23289 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/aptosCoinStructTag.html @@ -0,0 +1,3 @@ +aptosCoinStructTag | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function aptosCoinStructTag

                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/aptosRequest.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/aptosRequest.html new file mode 100644 index 000000000..141d413f7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/aptosRequest.html @@ -0,0 +1,6 @@ +aptosRequest | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function aptosRequest

                                                                                                                                                                                                                                                                                                                                                                                                                                                            • The main function to use when making an API request, returning the response or throwing an AptosApiError on failure.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Req extends {}
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Res extends {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                              • aptosRequestOpts: AptosRequest

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Options for the Aptos request, including the URL and path.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • aptosConfig: AptosConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                The configuration information for the SDK client instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • apiType: AptosApiType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                The type of API being accessed, which determines how the response is handled.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns Promise<AptosResponse<Req, Res>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                              The response from the API request or throws an AptosApiError if the request fails.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/base64UrlDecode.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/base64UrlDecode.html new file mode 100644 index 000000000..5c61a03aa --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/base64UrlDecode.html @@ -0,0 +1,5 @@ +base64UrlDecode | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Function base64UrlDecode

                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Decodes a base64 URL-encoded string into its original form. +This function is useful for converting base64 URL-encoded data back to a readable format.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                • base64Url: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The base64 URL-encoded string to decode.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Returns string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                The decoded string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/base64UrlToBytes.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/base64UrlToBytes.html new file mode 100644 index 000000000..0add63c4f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/base64UrlToBytes.html @@ -0,0 +1 @@ +base64UrlToBytes | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Function base64UrlToBytes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • base64Url: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/bigIntToBytesLE.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/bigIntToBytesLE.html new file mode 100644 index 000000000..46138a5b8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/bigIntToBytesLE.html @@ -0,0 +1,7 @@ +bigIntToBytesLE | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function bigIntToBytesLE

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Converts a bigint value into a little-endian byte array of a specified length. +This function is useful for representing large integers in a byte format, which is often required for cryptographic operations +or binary data manipulation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • value: number | bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The number to convert into bytes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • length: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The desired length of the resulting byte array.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A Uint8Array containing the little-endian representation of the bigint value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/buildTransaction.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/buildTransaction.html new file mode 100644 index 000000000..d7553d19b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/buildTransaction.html @@ -0,0 +1,19 @@ +buildTransaction | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Function buildTransaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Generates a transaction based on the provided arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Note: we can start with one function to support all different payload/transaction types, +and if to complex to use, we could have function for each type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AptosConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The transaction's sender account address as a hex input

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The transaction payload - can create by using generateTransactionPayload()

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    optional. Transaction options object

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    optional. For when want to create a multi signers transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    optional. For when want to create a fee payer (aka sponsored) transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    An instance of a RawTransaction, plus optional secondary/fee payer addresses

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    rawTransaction: RawTransaction,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    secondarySignerAddresses?: Array<AccountAddress>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    feePayerAddress?: AccountAddress
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    } +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/bytesToBigIntLE.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/bytesToBigIntLE.html new file mode 100644 index 000000000..387612bdc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/bytesToBigIntLE.html @@ -0,0 +1,5 @@ +bytesToBigIntLE | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function bytesToBigIntLE

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Converts a little-endian byte array into a BigInt. +This function is useful for interpreting byte data as a numerical value in a way that respects the little-endian format.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • bytes: Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The byte array to convert.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Returns bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The resulting BigInt representation of the byte array.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/checkOrConvertArgument.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/checkOrConvertArgument.html new file mode 100644 index 000000000..592cfecaa --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/checkOrConvertArgument.html @@ -0,0 +1,7 @@ +checkOrConvertArgument | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function checkOrConvertArgument

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/convertAmountFromHumanReadableToOnChain.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/convertAmountFromHumanReadableToOnChain.html new file mode 100644 index 000000000..082b50066 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/convertAmountFromHumanReadableToOnChain.html @@ -0,0 +1,9 @@ +convertAmountFromHumanReadableToOnChain | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function convertAmountFromHumanReadableToOnChain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Amount is represented in the smallest unit format on chain, this function converts +a human-readable amount format to the smallest unit format

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • value: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The value in human-readable format

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • decimal: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The token decimal

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The value in the smallest units

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            human-readable amount format: 500
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            on chain amount format when decimal is 8: 50000000000 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/convertAmountFromOnChainToHumanReadable.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/convertAmountFromOnChainToHumanReadable.html new file mode 100644 index 000000000..d188c781a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/convertAmountFromOnChainToHumanReadable.html @@ -0,0 +1,9 @@ +convertAmountFromOnChainToHumanReadable | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function convertAmountFromOnChainToHumanReadable

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Amount is represented in the smallest unit format on chain, this function converts +the smallest unit format to a human-readable amount format

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • value: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The value in human-readable format

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • decimal: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The token decimal

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The value in the smallest units

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              human-readable amount format: 500
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              on chain amount format when decimal is 8: 50000000000 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/convertArgument.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/convertArgument.html new file mode 100644 index 000000000..cbd03ea0e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/convertArgument.html @@ -0,0 +1,10 @@ +convertArgument | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Function convertArgument

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/convertNumber.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/convertNumber.html new file mode 100644 index 000000000..b1abc792d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/convertNumber.html @@ -0,0 +1,6 @@ +convertNumber | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Function convertNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Converts a number or a string representation of a number into a number type. +This function is useful for ensuring that the input is in a consistent numeric format, +which can help prevent type mismatches in further processing.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns number | undefined

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns the converted number if the input is valid; otherwise, it returns undefined.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/convertPayloadToInnerPayload.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/convertPayloadToInnerPayload.html new file mode 100644 index 000000000..be4fe7ba4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/convertPayloadToInnerPayload.html @@ -0,0 +1 @@ +convertPayloadToInnerPayload | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function convertPayloadToInnerPayload

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/createObjectAddress.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/createObjectAddress.html new file mode 100644 index 000000000..65f0fdfe9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/createObjectAddress.html @@ -0,0 +1,5 @@ +createObjectAddress | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Function createObjectAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/createResourceAddress.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/createResourceAddress.html new file mode 100644 index 000000000..62d325029 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/createResourceAddress.html @@ -0,0 +1,5 @@ +createResourceAddress | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function createResourceAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/createTokenAddress.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/createTokenAddress.html new file mode 100644 index 000000000..9b5a90022 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/createTokenAddress.html @@ -0,0 +1,6 @@ +createTokenAddress | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function createTokenAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Creates a token object address from creator address, collection name and token name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • creatorAddress: AccountAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The token creator account address

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • collectionName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The collection name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • tokenName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The token name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns AccountAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The token account address

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/createUserDerivedObjectAddress.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/createUserDerivedObjectAddress.html new file mode 100644 index 000000000..77b76c695 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/createUserDerivedObjectAddress.html @@ -0,0 +1,5 @@ +createUserDerivedObjectAddress | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function createUserDerivedObjectAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/deriveKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/deriveKey.html new file mode 100644 index 000000000..97e1e4c65 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/deriveKey.html @@ -0,0 +1 @@ +deriveKey | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function deriveKey

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/deriveTransactionType.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/deriveTransactionType.html new file mode 100644 index 000000000..a8e511720 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/deriveTransactionType.html @@ -0,0 +1,11 @@ +deriveTransactionType | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Function deriveTransactionType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Derives the appropriate raw transaction type based on the provided transaction details. +This function helps in identifying whether the transaction is a FeePayerRawTransaction, +MultiAgentRawTransaction, or a standard RawTransaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • transaction: AnyRawTransaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An object representing an Aptos transaction, which may include:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • feePayerAddress - The address of the fee payer (optional).
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • secondarySignerAddresses - An array of secondary signer addresses (optional).
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • rawTransaction - The raw transaction data.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Returns AnyRawTransactionInstance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                FeePayerRawTransaction | MultiAgentRawTransaction | RawTransaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/deserializeFromScriptArgument.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/deserializeFromScriptArgument.html new file mode 100644 index 000000000..4f9b7e76f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/deserializeFromScriptArgument.html @@ -0,0 +1,6 @@ +deserializeFromScriptArgument | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Function deserializeFromScriptArgument

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/deserializePublicKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/deserializePublicKey.html new file mode 100644 index 000000000..21b99c8d3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/deserializePublicKey.html @@ -0,0 +1,6 @@ +deserializePublicKey | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function deserializePublicKey

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Deserializes a public key from a hex string. +Attempts to deserialize using various public key types in sequence until one succeeds.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • publicKey: HexInput

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The hex string representation of the public key to deserialize

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns PublicKey

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The deserialized public key

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Error if deserialization fails for all supported key types or if multiple deserializations are found

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/deserializeSignature.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/deserializeSignature.html new file mode 100644 index 000000000..35996b573 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/deserializeSignature.html @@ -0,0 +1,6 @@ +deserializeSignature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Function deserializeSignature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Deserializes a signature from a hex string. +Attempts to deserialize using various signature types in sequence until one succeeds.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • signature: HexInput

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The hex string representation of the signature to deserialize

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns Signature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The deserialized signature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Error if deserialization fails for all supported signature types or if multiple deserializations are found

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/ensureBoolean.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/ensureBoolean.html new file mode 100644 index 000000000..09a6afdd6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/ensureBoolean.html @@ -0,0 +1 @@ +ensureBoolean | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function ensureBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • value: unknown

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Returns asserts value is boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/fetchEntryFunctionAbi.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/fetchEntryFunctionAbi.html new file mode 100644 index 000000000..7bce185ff --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/fetchEntryFunctionAbi.html @@ -0,0 +1,9 @@ +fetchEntryFunctionAbi | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function fetchEntryFunctionAbi

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Fetches the ABI for an entry function from the specified module address. +This function validates if the ABI corresponds to an entry function and retrieves its parameters.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • moduleAddress: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The address of the module containing the entry function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • moduleName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The name of the module containing the entry function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • functionName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The name of the entry function to fetch the ABI for.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • aptosConfig: AptosConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The configuration settings for Aptos.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns Promise<EntryFunctionABI>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An object containing the number of signers, type parameters, and function parameters.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Error if the ABI cannot be found or if the function is not an entry function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/fetchFunctionAbi.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/fetchFunctionAbi.html new file mode 100644 index 000000000..25fdc471d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/fetchFunctionAbi.html @@ -0,0 +1,7 @@ +fetchFunctionAbi | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function fetchFunctionAbi

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Fetches the ABI of a specified function from the on-chain module ABI. This function allows you to access the details of a +specific function within a module.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • moduleAddress: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The address of the module from which to fetch the function ABI.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • moduleName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The name of the module containing the function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • functionName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The name of the function whose ABI is to be fetched.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • aptosConfig: AptosConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The configuration settings for Aptos.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns Promise<MoveFunction | undefined>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/fetchJWK.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/fetchJWK.html new file mode 100644 index 000000000..d3a9ad60c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/fetchJWK.html @@ -0,0 +1,6 @@ +fetchJWK | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function fetchJWK

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/fetchModuleAbi.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/fetchModuleAbi.html new file mode 100644 index 000000000..33a6cf32d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/fetchModuleAbi.html @@ -0,0 +1,6 @@ +fetchModuleAbi | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Function fetchModuleAbi

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Fetches the ABI of a specified module from the on-chain module ABI. +Results are cached for 5 minutes to reduce redundant network calls.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • moduleAddress: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The address of the module from which to fetch the ABI.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • moduleName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The name of the module containing the ABI.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • aptosConfig: AptosConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The configuration settings for Aptos.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Returns Promise<MoveModule | undefined>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/fetchMoveFunctionAbi.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/fetchMoveFunctionAbi.html new file mode 100644 index 000000000..e7c6fe08b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/fetchMoveFunctionAbi.html @@ -0,0 +1,2 @@ +fetchMoveFunctionAbi | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Function fetchMoveFunctionAbi

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/fetchViewFunctionAbi.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/fetchViewFunctionAbi.html new file mode 100644 index 000000000..9edf6776e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/fetchViewFunctionAbi.html @@ -0,0 +1,9 @@ +fetchViewFunctionAbi | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function fetchViewFunctionAbi

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Fetches the ABI for a view function from the specified module address. +This function ensures that the ABI is valid and retrieves the type parameters, parameters, and return types for the view function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • moduleAddress: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The address of the module containing the view function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • moduleName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The name of the module containing the view function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • functionName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The name of the view function for which to fetch the ABI.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • aptosConfig: AptosConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The configuration settings for Aptos.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns Promise<ViewFunctionABI>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    An object containing the type parameters, parameters, and return types of the view function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Error if the ABI cannot be found or if the function is not a view function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/findFirstNonSignerArg.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/findFirstNonSignerArg.html new file mode 100644 index 000000000..e23e16b02 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/findFirstNonSignerArg.html @@ -0,0 +1,7 @@ +findFirstNonSignerArg | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Function findFirstNonSignerArg

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Finds the index of the first non-signer argument in the function ABI parameters.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A function is often defined with a signer or &signer arguments at the start, which are filled in +by signatures and not by the caller. This function helps identify the position of the first argument that +can be provided by the caller, allowing for easier handling of function parameters.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • functionAbi: MoveFunction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The ABI of the function to analyze.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The index of the first non-signer argument, or the length of the parameters array if none are found.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/floorToWholeHour.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/floorToWholeHour.html new file mode 100644 index 000000000..ae727f4ab --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/floorToWholeHour.html @@ -0,0 +1,4 @@ +floorToWholeHour | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function floorToWholeHour

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Floors the given timestamp to the nearest whole hour. +This function is useful for normalizing timestamps to hourly intervals.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • timestampInSeconds: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The timestamp in seconds to be floored.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Returns number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateRawTransaction.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateRawTransaction.html new file mode 100644 index 000000000..4a94a1c8c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateRawTransaction.html @@ -0,0 +1,9 @@ +generateRawTransaction | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function generateRawTransaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateSignedTransaction.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateSignedTransaction.html new file mode 100644 index 000000000..de02993b3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateSignedTransaction.html @@ -0,0 +1,7 @@ +generateSignedTransaction | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function generateSignedTransaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Generate a signed transaction ready for submission to the blockchain. +This function prepares the transaction by authenticating the sender and any additional signers based on the provided arguments.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A Uint8Array representing the signed transaction in bytes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Error if the feePayerAuthenticator is not provided for a fee payer transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Error if additionalSignersAuthenticators are not provided for a multi-signer transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateSignedTransactionForSimulation.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateSignedTransactionForSimulation.html new file mode 100644 index 000000000..9bc255668 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateSignedTransactionForSimulation.html @@ -0,0 +1,10 @@ +generateSignedTransactionForSimulation | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function generateSignedTransactionForSimulation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Generate a signed transaction for simulation before submitting it to the chain. +This function helps in preparing a transaction that can be simulated, allowing users to verify its validity and expected behavior.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • args: InputSimulateTransactionData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The input data required to generate the signed transaction for simulation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The data required to simulate a transaction, typically generated by generateTransaction().

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • OptionalfeePayerPublicKey?: PublicKey

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For a fee payer transaction (aka Sponsored Transaction)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Optionaloptions?: InputSimulateTransactionOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • OptionalsecondarySignersPublicKeys?: (PublicKey | undefined)[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For a fee payer or multi-agent transaction that requires additional signers in

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • OptionalsignerPublicKey?: PublicKey

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For a single signer transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • transaction: AnyRawTransaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The transaction to simulate, probably generated by generateTransaction()

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A signed serialized transaction that can be simulated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateSigningMessage.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateSigningMessage.html new file mode 100644 index 000000000..23617e7e6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateSigningMessage.html @@ -0,0 +1,6 @@ +generateSigningMessage | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Function generateSigningMessage

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Generates the 'signing message' form of a message to be signed. +This function combines a domain separator with the byte representation of the message to create a signing message.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • bytes: Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The byte representation of the message to be signed and sent to the chain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • domainSeparator: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A domain separator that starts with 'APTOS::'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Returns Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Uint8Array of the signing message.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateSigningMessageForSerializable.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateSigningMessageForSerializable.html new file mode 100644 index 000000000..fac95169f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateSigningMessageForSerializable.html @@ -0,0 +1,6 @@ +generateSigningMessageForSerializable | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Function generateSigningMessageForSerializable

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • serializable: Serializable

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    An object that has a BCS serialized form.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Uint8Array of the signing message.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Use CryptoHashable instead by having your class implement it and call hash() to get the signing message.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Generates the 'signing message' form of a serializable value by serializing it and using the constructor name as the domain +separator.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateSigningMessageForTransaction.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateSigningMessageForTransaction.html new file mode 100644 index 000000000..d07376d95 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateSigningMessageForTransaction.html @@ -0,0 +1,5 @@ +generateSigningMessageForTransaction | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function generateSigningMessageForTransaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Generates the 'signing message' form of a transaction by deriving the type of transaction and applying the appropriate domain +separator based on the presence of a fee payer or secondary signers.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • transaction: AnyRawTransaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A transaction that is to be signed, which can include a fee payer address or secondary signer addresses.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The Uint8Array of the signing message.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateTransactionPayload.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateTransactionPayload.html new file mode 100644 index 000000000..ba458af5a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateTransactionPayload.html @@ -0,0 +1,14 @@ +generateTransactionPayload | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Function generateTransactionPayload

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Builds a transaction payload based on the data argument and returns +a transaction payload - TransactionPayloadScript | TransactionPayloadMultiSig | TransactionPayloadEntryFunction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This uses the RemoteABI by default, and the remote ABI can be skipped by using generateTransactionPayloadWithABI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GenerateTransactionPayloadData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TransactionPayload

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateTransactionPayloadWithABI.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateTransactionPayloadWithABI.html new file mode 100644 index 000000000..e194ffdb1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateTransactionPayloadWithABI.html @@ -0,0 +1,5 @@ +generateTransactionPayloadWithABI | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function generateTransactionPayloadWithABI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateUserTransactionHash.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateUserTransactionHash.html new file mode 100644 index 000000000..e90e1d48a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateUserTransactionHash.html @@ -0,0 +1,4 @@ +generateUserTransactionHash | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function generateUserTransactionHash

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateViewFunctionPayload.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateViewFunctionPayload.html new file mode 100644 index 000000000..ac8eb7945 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateViewFunctionPayload.html @@ -0,0 +1,5 @@ +generateViewFunctionPayload | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function generateViewFunctionPayload

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateViewFunctionPayloadWithABI.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateViewFunctionPayloadWithABI.html new file mode 100644 index 000000000..c45c0e888 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/generateViewFunctionPayloadWithABI.html @@ -0,0 +1,7 @@ +generateViewFunctionPayloadWithABI | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function generateViewFunctionPayloadWithABI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/get.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/get.html new file mode 100644 index 000000000..b4a3ae136 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/get.html @@ -0,0 +1,13 @@ +get | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Function get

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Executes a GET request to retrieve data based on the provided options.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Req extends {}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Res extends {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • options: GetRequestOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The options for the GET request.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Options for making a GET request, including configuration for the API client.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • OptionalacceptType?: MimeType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The accepted content type of the response of the API

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • aptosConfig: AptosConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The config for the API client

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • OptionalcontentType?: MimeType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The content type of the request body

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • originMethod: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The name of the API method

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Optionaloverrides?: ClientConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Specific client overrides for this request to override aptosConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Optionalparams?: Record<string, string | AnyNumber | boolean | undefined>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The query parameters for the request

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • path: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The URL path to the API method

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • type: AptosApiType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The type of API endpoint to call e.g. fullnode, indexer, etc

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Returns Promise<AptosResponse<Req, Res>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The response from the GET request.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/getAptosFullNode.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/getAptosFullNode.html new file mode 100644 index 000000000..3e03411fb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/getAptosFullNode.html @@ -0,0 +1,4 @@ +getAptosFullNode | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Function getAptosFullNode

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/getAptosPepperService.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/getAptosPepperService.html new file mode 100644 index 000000000..8e68eef2a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/getAptosPepperService.html @@ -0,0 +1,4 @@ +getAptosPepperService | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function getAptosPepperService

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/getAuthenticatorForSimulation.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/getAuthenticatorForSimulation.html new file mode 100644 index 000000000..e4c39318c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/getAuthenticatorForSimulation.html @@ -0,0 +1 @@ +getAuthenticatorForSimulation | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/getErrorMessage.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/getErrorMessage.html new file mode 100644 index 000000000..ad2e63c75 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/getErrorMessage.html @@ -0,0 +1,4 @@ +getErrorMessage | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function getErrorMessage

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Get the error message from an unknown error.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • error: unknown

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The error to get the message from

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Returns string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The error message

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/getFunctionParts.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/getFunctionParts.html new file mode 100644 index 000000000..e17e92807 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/getFunctionParts.html @@ -0,0 +1,6 @@ +getFunctionParts | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function getFunctionParts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Splits a function identifier into its constituent parts: module address, module name, and function name. +This function helps in validating and extracting details from a function identifier string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • functionArg: `${string}::${string}::${string}`

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The function identifier string in the format "moduleAddress::moduleName::functionName".

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns { functionName: string; moduleAddress: string; moduleName: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An object containing the module address, module name, and function name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Error if the function identifier does not contain exactly three parts.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/getIssAudAndUidVal.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/getIssAudAndUidVal.html new file mode 100644 index 000000000..db128f744 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/getIssAudAndUidVal.html @@ -0,0 +1,6 @@ +getIssAudAndUidVal | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function getIssAudAndUidVal

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Parses a JWT and returns the 'iss', 'aud', and 'uid' values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • args: { jwt: string; uidKey?: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The arguments for parsing the JWT.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • jwt: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The JWT to parse.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • OptionaluidKey?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The key to use for the 'uid' value; defaults to 'sub'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns { aud: string; iss: string; uidVal: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The 'iss', 'aud', and 'uid' values from the JWT.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/getKeylessConfig.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/getKeylessConfig.html new file mode 100644 index 000000000..5e65d89e3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/getKeylessConfig.html @@ -0,0 +1,7 @@ +getKeylessConfig | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function getKeylessConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/getKeylessJWKs.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/getKeylessJWKs.html new file mode 100644 index 000000000..a90c4052e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/getKeylessJWKs.html @@ -0,0 +1,7 @@ +getKeylessJWKs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Function getKeylessJWKs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/getPageWithObfuscatedCursor.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/getPageWithObfuscatedCursor.html new file mode 100644 index 000000000..595cc4a93 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/getPageWithObfuscatedCursor.html @@ -0,0 +1 @@ +getPageWithObfuscatedCursor | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Function getPageWithObfuscatedCursor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/hashStrToField.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/hashStrToField.html new file mode 100644 index 000000000..48b63ecd4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/hashStrToField.html @@ -0,0 +1,6 @@ +hashStrToField | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function hashStrToField

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Hashes a string to a field element via Poseidon hashing. +This function is useful for converting a string into a fixed-size hash that can be used in cryptographic applications.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • str: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The string to be hashed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • maxSizeBytes: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The maximum size in bytes for the resulting hash.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    bigint - The result of the hash.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/hashValues.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/hashValues.html new file mode 100644 index 000000000..ba8d845f1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/hashValues.html @@ -0,0 +1,3 @@ +hashValues | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Function hashValues

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/hexToAsciiString.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/hexToAsciiString.html new file mode 100644 index 000000000..69ffc0647 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/hexToAsciiString.html @@ -0,0 +1 @@ +hexToAsciiString | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function hexToAsciiString

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • hex: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Returns string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsAddress.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsAddress.html new file mode 100644 index 000000000..2d5f089ab --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsAddress.html @@ -0,0 +1 @@ +isBcsAddress | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsBool.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsBool.html new file mode 100644 index 000000000..13915bcbb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsBool.html @@ -0,0 +1 @@ +isBcsBool | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsFixedBytes.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsFixedBytes.html new file mode 100644 index 000000000..7744d4690 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsFixedBytes.html @@ -0,0 +1 @@ +isBcsFixedBytes | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsI128.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsI128.html new file mode 100644 index 000000000..d9e888e53 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsI128.html @@ -0,0 +1 @@ +isBcsI128 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsI16.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsI16.html new file mode 100644 index 000000000..2715af6ec --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsI16.html @@ -0,0 +1 @@ +isBcsI16 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsI256.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsI256.html new file mode 100644 index 000000000..1b1b71a32 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsI256.html @@ -0,0 +1 @@ +isBcsI256 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsI32.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsI32.html new file mode 100644 index 000000000..632c85837 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsI32.html @@ -0,0 +1 @@ +isBcsI32 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsI64.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsI64.html new file mode 100644 index 000000000..b10bc6ada --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsI64.html @@ -0,0 +1 @@ +isBcsI64 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsI8.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsI8.html new file mode 100644 index 000000000..e1b246d5d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsI8.html @@ -0,0 +1 @@ +isBcsI8 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsString.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsString.html new file mode 100644 index 000000000..0668fdc4d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsString.html @@ -0,0 +1 @@ +isBcsString | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsU128.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsU128.html new file mode 100644 index 000000000..b197efc77 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsU128.html @@ -0,0 +1 @@ +isBcsU128 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsU16.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsU16.html new file mode 100644 index 000000000..542bc3dfd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsU16.html @@ -0,0 +1 @@ +isBcsU16 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsU256.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsU256.html new file mode 100644 index 000000000..1be9e735b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsU256.html @@ -0,0 +1 @@ +isBcsU256 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsU32.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsU32.html new file mode 100644 index 000000000..829df32a3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsU32.html @@ -0,0 +1 @@ +isBcsU32 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsU64.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsU64.html new file mode 100644 index 000000000..c5d47bc6f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsU64.html @@ -0,0 +1 @@ +isBcsU64 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsU8.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsU8.html new file mode 100644 index 000000000..258151370 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBcsU8.html @@ -0,0 +1 @@ +isBcsU8 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBlockEpilogueTransactionResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBlockEpilogueTransactionResponse.html new file mode 100644 index 000000000..27e85d1ca --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBlockEpilogueTransactionResponse.html @@ -0,0 +1,4 @@ +isBlockEpilogueTransactionResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function isBlockEpilogueTransactionResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBlockMetadataTransactionResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBlockMetadataTransactionResponse.html new file mode 100644 index 000000000..255be2955 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBlockMetadataTransactionResponse.html @@ -0,0 +1,4 @@ +isBlockMetadataTransactionResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function isBlockMetadataTransactionResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBool.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBool.html new file mode 100644 index 000000000..8fcf46598 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBool.html @@ -0,0 +1,5 @@ +isBool | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function isBool

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBun.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBun.html new file mode 100644 index 000000000..5199cca40 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isBun.html @@ -0,0 +1,4 @@ +isBun | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Function isBun

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Checks if the current runtime environment is Bun. +This is useful for detecting Bun-specific compatibility issues.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                true if running in Bun, false otherwise.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isCanonicalEd25519Signature.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isCanonicalEd25519Signature.html new file mode 100644 index 000000000..85da22792 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isCanonicalEd25519Signature.html @@ -0,0 +1,7 @@ +isCanonicalEd25519Signature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Function isCanonicalEd25519Signature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isEd25519Signature.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isEd25519Signature.html new file mode 100644 index 000000000..393515db6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isEd25519Signature.html @@ -0,0 +1,6 @@ +isEd25519Signature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function isEd25519Signature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isEmptyOption.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isEmptyOption.html new file mode 100644 index 000000000..1e67fe65e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isEmptyOption.html @@ -0,0 +1,4 @@ +isEmptyOption | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Function isEmptyOption

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isEncodedEntryFunctionArgument.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isEncodedEntryFunctionArgument.html new file mode 100644 index 000000000..16c8f04b9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isEncodedEntryFunctionArgument.html @@ -0,0 +1,4 @@ +isEncodedEntryFunctionArgument | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function isEncodedEntryFunctionArgument

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isEncodedStruct.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isEncodedStruct.html new file mode 100644 index 000000000..6db023f2e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isEncodedStruct.html @@ -0,0 +1,9 @@ +isEncodedStruct | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function isEncodedStruct

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Determines whether the given object is an encoded struct type with the following properties:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • account_address: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • module_name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • struct_name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • structObj: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The object to check

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns structObj is {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              account_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              module_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              struct_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whether the object is an encoded struct type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isFeePayerSignature.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isFeePayerSignature.html new file mode 100644 index 000000000..eafb152f9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isFeePayerSignature.html @@ -0,0 +1,4 @@ +isFeePayerSignature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function isFeePayerSignature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isGenesisTransactionResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isGenesisTransactionResponse.html new file mode 100644 index 000000000..4c22948dc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isGenesisTransactionResponse.html @@ -0,0 +1,4 @@ +isGenesisTransactionResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function isGenesisTransactionResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isKeylessSigner.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isKeylessSigner.html new file mode 100644 index 000000000..daa7e2d37 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isKeylessSigner.html @@ -0,0 +1 @@ +isKeylessSigner | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Function isKeylessSigner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isLargeNumber.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isLargeNumber.html new file mode 100644 index 000000000..a1cfaa3e8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isLargeNumber.html @@ -0,0 +1,3 @@ +isLargeNumber | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Function isLargeNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isMultiAgentSignature.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isMultiAgentSignature.html new file mode 100644 index 000000000..25a073f9e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isMultiAgentSignature.html @@ -0,0 +1,4 @@ +isMultiAgentSignature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function isMultiAgentSignature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isMultiEd25519Signature.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isMultiEd25519Signature.html new file mode 100644 index 000000000..1bbbffa45 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isMultiEd25519Signature.html @@ -0,0 +1,4 @@ +isMultiEd25519Signature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Function isMultiEd25519Signature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isNumber.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isNumber.html new file mode 100644 index 000000000..e2b85c6b4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isNumber.html @@ -0,0 +1,4 @@ +isNumber | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function isNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isPendingTransactionResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isPendingTransactionResponse.html new file mode 100644 index 000000000..7524c49fd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isPendingTransactionResponse.html @@ -0,0 +1,4 @@ +isPendingTransactionResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function isPendingTransactionResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isScriptDataInput.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isScriptDataInput.html new file mode 100644 index 000000000..766783477 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isScriptDataInput.html @@ -0,0 +1,5 @@ +isScriptDataInput | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function isScriptDataInput

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isSecp256k1Signature.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isSecp256k1Signature.html new file mode 100644 index 000000000..c01b264d0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isSecp256k1Signature.html @@ -0,0 +1,4 @@ +isSecp256k1Signature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function isSecp256k1Signature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isSingleKeySigner.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isSingleKeySigner.html new file mode 100644 index 000000000..06f2590a2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isSingleKeySigner.html @@ -0,0 +1 @@ +isSingleKeySigner | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Function isSingleKeySigner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isSingleSenderSignature.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isSingleSenderSignature.html new file mode 100644 index 000000000..8d0fe4a10 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isSingleSenderSignature.html @@ -0,0 +1,4 @@ +isSingleSenderSignature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Function isSingleSenderSignature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isStateCheckpointTransactionResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isStateCheckpointTransactionResponse.html new file mode 100644 index 000000000..d732277bc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isStateCheckpointTransactionResponse.html @@ -0,0 +1,4 @@ +isStateCheckpointTransactionResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function isStateCheckpointTransactionResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isString.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isString.html new file mode 100644 index 000000000..3ec253aed --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isString.html @@ -0,0 +1,4 @@ +isString | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Function isString

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Checks if the provided argument is of type string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • arg: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The value to be checked for string type.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns arg is string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A boolean indicating whether the argument is a string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isUserTransactionResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isUserTransactionResponse.html new file mode 100644 index 000000000..17705c4c2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isUserTransactionResponse.html @@ -0,0 +1,4 @@ +isUserTransactionResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function isUserTransactionResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isValidBIP44Path.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isValidBIP44Path.html new file mode 100644 index 000000000..f41db2fd5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isValidBIP44Path.html @@ -0,0 +1,7 @@ +isValidBIP44Path | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function isValidBIP44Path

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Validate a BIP-44 derivation path string to ensure it meets the required format. +This function checks if the provided path adheres to the BIP-44 standard for Secp256k1. +Parse and validate a path that is compliant to BIP-44 in form m/44'/637'/{account_index}'/{change_index}/{address_index} +for Secp256k1

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Note that for Secp256k1, the last two components must be non-hardened.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • path: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The path string to validate (e.g. m/44'/637'/0'/0/0).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isValidFunctionInfo.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isValidFunctionInfo.html new file mode 100644 index 000000000..077fac0a6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isValidFunctionInfo.html @@ -0,0 +1,4 @@ +isValidFunctionInfo | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function isValidFunctionInfo

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Validates the provided function information.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • functionInfo: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The function information to validate.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whether the function information is valid.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isValidHardenedPath.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isValidHardenedPath.html new file mode 100644 index 000000000..6a612b319 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isValidHardenedPath.html @@ -0,0 +1,12 @@ +isValidHardenedPath | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function isValidHardenedPath

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Aptos derive path is 637

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parse and validate a path that is compliant to SLIP-0010 and BIP-44 +in form m/44'/637'/{account_index}'/{change_index}'/{address_index}'. +See SLIP-0010 https://github.com/satoshilabs/slips/blob/master/slip-0044.md +See BIP-44 https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Note that for Ed25519, all components must be hardened. +This is because non-hardened [PK] derivation would not work due to Ed25519's lack of a key homomorphism. +Specifically, you cannot derive the PK associated with derivation path a/b/c given the PK of a/b. +This is because the PK in Ed25519 is, more or less, computed as 𝑔𝐻(𝑠𝑘), +with the hash function breaking the homomorphism.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • path: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The derivation path string to validate (e.g. m/44'/637'/0'/0'/0').

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/isValidatorTransactionResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isValidatorTransactionResponse.html new file mode 100644 index 000000000..7bd451b30 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/isValidatorTransactionResponse.html @@ -0,0 +1,4 @@ +isValidatorTransactionResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Function isValidatorTransactionResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/mnemonicToSeed.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/mnemonicToSeed.html new file mode 100644 index 000000000..7dbfdbb23 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/mnemonicToSeed.html @@ -0,0 +1,3 @@ +mnemonicToSeed | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Function mnemonicToSeed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Normalizes the mnemonic by removing extra whitespace and making it lowercase

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • mnemonic: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    the mnemonic seed phrase

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/normalizeBundle.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/normalizeBundle.html new file mode 100644 index 000000000..548a4bd80 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/normalizeBundle.html @@ -0,0 +1,5 @@ +normalizeBundle | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function normalizeBundle

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Normalizes an instance of a class by deserializing it from its byte representation. +This function allows the instanceof operator to work correctly when the input objects originate from a different bundle.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/nowInSeconds.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/nowInSeconds.html new file mode 100644 index 000000000..3ca731ae2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/nowInSeconds.html @@ -0,0 +1 @@ +nowInSeconds | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Function nowInSeconds

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/objectStructTag.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/objectStructTag.html new file mode 100644 index 000000000..12362f0aa --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/objectStructTag.html @@ -0,0 +1,4 @@ +objectStructTag | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function objectStructTag

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Creates a new StructTag for the Object type with the specified type argument. +This function helps in defining a structured representation of an Object with a specific type.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • typeArg: TypeTag

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The type tag that specifies the type of the Object.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Returns StructTag

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/optionStructTag.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/optionStructTag.html new file mode 100644 index 000000000..d856e81a0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/optionStructTag.html @@ -0,0 +1,4 @@ +optionStructTag | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function optionStructTag

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Creates a new StructTag for the Option type with the specified type argument. +This can help in defining a specific instance of an Option type in your application.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • typeArg: TypeTag

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The type tag that specifies the type of the value contained in the Option.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns StructTag

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/outOfRangeErrorMessage.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/outOfRangeErrorMessage.html new file mode 100644 index 000000000..46034eaf1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/outOfRangeErrorMessage.html @@ -0,0 +1 @@ +outOfRangeErrorMessage | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function outOfRangeErrorMessage

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/padAndPackBytesWithLen.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/padAndPackBytesWithLen.html new file mode 100644 index 000000000..2aff7ce75 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/padAndPackBytesWithLen.html @@ -0,0 +1,8 @@ +padAndPackBytesWithLen | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function padAndPackBytesWithLen

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Pads and packs the given byte array to a specified maximum size and appends its length. +This function ensures that the byte array does not exceed the maximum size, throwing an error if it does. +It is useful for preparing byte data for further processing or transmission by ensuring a consistent format.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • bytes: Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The byte array to be padded and packed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • maxSizeBytes: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The maximum allowed size for the byte array.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns bigint[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A new Uint8Array that contains the padded and packed bytes along with the length of the original byte array.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Error if the length of the input bytes exceeds the maximum size.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/paginateWithCursor.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/paginateWithCursor.html new file mode 100644 index 000000000..91ac2c92f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/paginateWithCursor.html @@ -0,0 +1,2 @@ +paginateWithCursor | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Function paginateWithCursor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/paginateWithObfuscatedCursor.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/paginateWithObfuscatedCursor.html new file mode 100644 index 000000000..cf91918b5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/paginateWithObfuscatedCursor.html @@ -0,0 +1 @@ +paginateWithObfuscatedCursor | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Function paginateWithObfuscatedCursor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/pairedFaMetadataAddress.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/pairedFaMetadataAddress.html new file mode 100644 index 000000000..8a9839a19 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/pairedFaMetadataAddress.html @@ -0,0 +1,15 @@ +pairedFaMetadataAddress | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function pairedFaMetadataAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Calculates the paired FA metadata address for a given coin type. +This function is tolerant of various address formats in the coin type string, +including complex nested types.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • coinType: `0x${string}::${string}::${string}`

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The coin type string in any of these formats:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Short form address: "0x1::aptos_coin::AptosCoin"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Long form address: "0x0000000000000000000000000000000000000000000000000000000000000001::aptos_coin::AptosCoin"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • With leading zeros: "0x00001::aptos_coin::AptosCoin"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • With nested types: "0x1::coin::Coin<0x1412::a::struct<0x0001::aptos_coin::AptosCoin>>"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns AccountAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The calculated metadata address as an AccountAddress instance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    // All these formats are valid and will produce the same result:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    pairedFaMetadataAddress("0x1::aptos_coin::AptosCoin") // simple form
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    pairedFaMetadataAddress("0x0000000000000000000000000000000000000000000000000000000000000001::aptos_coin::AptosCoin") // long form
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    pairedFaMetadataAddress("0x00001::aptos_coin::AptosCoin") // with leading zeros
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    pairedFaMetadataAddress("0x1::coin::Coin<0x1412::a::struct<0x0001::aptos_coin::AptosCoin>>") // nested type parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/parseEncodedStruct.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/parseEncodedStruct.html new file mode 100644 index 000000000..f4d7886a2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/parseEncodedStruct.html @@ -0,0 +1,7 @@ +parseEncodedStruct | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Function parseEncodedStruct

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Convert an encoded struct to a MoveStructId.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • structObj: { account_address: string; module_name: string; struct_name: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The struct with account_address, module_name, and struct_name properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns `${string}::${string}::${string}`

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The MoveStructId

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      const structObj = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      account_address: "0x1",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      module_name: "0x6170746f735f636f696e",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      struct_name: "0x4170746f73436f696e",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      // structId is "0x1::aptos_coin::AptosCoin"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      const structId = parseEncodedStruct(structObj); +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/parseJwtHeader.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/parseJwtHeader.html new file mode 100644 index 000000000..102626c8b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/parseJwtHeader.html @@ -0,0 +1,5 @@ +parseJwtHeader | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function parseJwtHeader

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Safely parses the JWT header.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • jwtHeader: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The JWT header string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Returns JwtHeader

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parsed JWT header as an object.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        KeylessError if the header is invalid or missing required fields

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/parseTypeTag.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/parseTypeTag.html new file mode 100644 index 000000000..cc390c71b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/parseTypeTag.html @@ -0,0 +1,24 @@ +parseTypeTag | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function parseTypeTag

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Parses a type string into a structured representation of type tags, accommodating various formats including generics and +nested types.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This function can help you accurately interpret type strings, which can include simple types, standalone structs, and complex +nested generics. +It supports multiple generics, spacing within generics, and nested generics of varying depths. +All types are made of a few parts they're either:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. A simple type e.g. u8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. A standalone struct e.g. 0x1::account::Account
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. A nested struct e.g. 0x1::coin::Coin<0x1234::coin::MyCoin>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          There are a few more special cases that need to be handled, however.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. Multiple generics e.g. 0x1::pair::Pair<u8, u16>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. Spacing in the generics e.g. 0x1::pair::Pair< u8 , u16>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. Nested generics of different depths e.g. 0x1::pair::Pair<0x1::coin::Coin<0x1234::coin::MyCoin>, u8>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. Generics for types in ABIs are filled in with placeholders e.g. T1, T2, T3
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • typeStr: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The string representation of the type to be parsed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Optionaloptions: { allowGenerics?: boolean }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Optional settings for parsing behavior.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • OptionalallowGenerics?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A flag indicating whether to allow generics in the parsing process.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns TypeTag

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The parsed type tag representation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          TypeTagParserError if the type string is malformed or does not conform to expected formats.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/poseidonHash.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/poseidonHash.html new file mode 100644 index 000000000..5a4ccd53b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/poseidonHash.html @@ -0,0 +1,6 @@ +poseidonHash | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function poseidonHash

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Hashes up to 16 scalar elements via the Poseidon hashing algorithm. +Each element must be scalar fields of the BN254 elliptic curve group.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • inputs: (string | number | bigint)[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An array of elements to be hashed, which can be of type number, bigint, or string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            bigint - The result of the hash.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Error - Throws an error if the input length exceeds the maximum allowed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/post.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/post.html new file mode 100644 index 000000000..65932352a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/post.html @@ -0,0 +1,14 @@ +post | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function post

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • post<Req extends {}, Res extends {}>(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  options: PostRequestOptions,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ): Promise<AptosResponse<Req, Res>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Executes a POST request to the specified URL with the provided options.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Req extends {}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Res extends {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • options: PostRequestOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The options for the POST request.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Options for making a POST request, including the API client configuration.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • OptionalacceptType?: MimeType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The accepted content type of the response of the API

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • aptosConfig: AptosConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The config for the API client

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Optionalbody?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The body of the request, should match the content type of the request

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • OptionalcontentType?: MimeType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The content type of the request body

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • originMethod: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The name of the API method

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Optionaloverrides?: ClientConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Specific client overrides for this request to override aptosConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Optionalparams?: Record<string, string | AnyNumber | boolean | undefined>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The query parameters for the request

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • path: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The URL path to the API method

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • type: AptosApiType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The type of API endpoint to call e.g. fullnode, indexer, etc

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns Promise<AptosResponse<Req, Res>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The response from the POST request.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/postAptosFaucet.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/postAptosFaucet.html new file mode 100644 index 000000000..d0d00d932 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/postAptosFaucet.html @@ -0,0 +1,6 @@ +postAptosFaucet | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Function postAptosFaucet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/postAptosFullNode.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/postAptosFullNode.html new file mode 100644 index 000000000..b6b824a24 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/postAptosFullNode.html @@ -0,0 +1,4 @@ +postAptosFullNode | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Function postAptosFullNode

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/postAptosIndexer.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/postAptosIndexer.html new file mode 100644 index 000000000..14ef89a31 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/postAptosIndexer.html @@ -0,0 +1,4 @@ +postAptosIndexer | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function postAptosIndexer

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/postAptosPepperService.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/postAptosPepperService.html new file mode 100644 index 000000000..8aadd33fc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/postAptosPepperService.html @@ -0,0 +1,4 @@ +postAptosPepperService | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Function postAptosPepperService

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/postAptosProvingService.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/postAptosProvingService.html new file mode 100644 index 000000000..32e0fb5b6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/postAptosProvingService.html @@ -0,0 +1,3 @@ +postAptosProvingService | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function postAptosProvingService

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/request.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/request.html new file mode 100644 index 000000000..f941a5feb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/request.html @@ -0,0 +1,6 @@ +request | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function request

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Sends a request using the specified options and returns the response.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Req
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Res

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • options: ClientRequest<Req>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The options for the request.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Represents a client for making requests to a service provider.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Optionalbody?: Req
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • OptionalcontentType?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Optionalheaders?: Record<string, any>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Optionalhttp2?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • method: "GET" | "POST"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • OptionaloriginMethod?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Optionaloverrides?: ClientHeadersType & {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  API_KEY?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  http2?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WITH_CREDENTIALS?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              } & { AUTH_TOKEN?: string }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Optionalparams?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • url: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • client: Client

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The client used to make the request.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns Promise<ClientResponse<Res>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The response from the request.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/sleep.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/sleep.html new file mode 100644 index 000000000..1ed22a14b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/sleep.html @@ -0,0 +1,4 @@ +sleep | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function sleep

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Sleep for the specified amount of time in milliseconds. +This function can be used to introduce delays in asynchronous operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • timeMs: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The time in milliseconds to sleep.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns Promise<null>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/splitPath.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/splitPath.html new file mode 100644 index 000000000..d7c96261f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/splitPath.html @@ -0,0 +1,2 @@ +splitPath | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function splitPath

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Splits derive path into segments

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • path: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/standardizeTypeTags.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/standardizeTypeTags.html new file mode 100644 index 000000000..b876c8263 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/standardizeTypeTags.html @@ -0,0 +1,4 @@ +standardizeTypeTags | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Function standardizeTypeTags

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/stringStructTag.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/stringStructTag.html new file mode 100644 index 000000000..f2c91f565 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/stringStructTag.html @@ -0,0 +1,3 @@ +stringStructTag | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Function stringStructTag

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/throwTypeMismatch.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/throwTypeMismatch.html new file mode 100644 index 000000000..7033490b9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/throwTypeMismatch.html @@ -0,0 +1,5 @@ +throwTypeMismatch | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function throwTypeMismatch

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Throws an error indicating a type mismatch for a specified argument position. +This function helps in debugging by providing clear feedback on expected types.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • expectedType: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The type that was expected for the argument.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • position: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The position of the argument that caused the type mismatch.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/truncateAddress.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/truncateAddress.html new file mode 100644 index 000000000..6966d7913 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/truncateAddress.html @@ -0,0 +1,6 @@ +truncateAddress | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Function truncateAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Truncates the provided wallet address at the middle with an ellipsis.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • address: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The wallet address to truncate.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • start: number = 6

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The number of characters to show at the beginning of the address.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • end: number = 5

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The number of characters to show at the end of the address.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The truncated address.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/validateNumberInRange.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/validateNumberInRange.html new file mode 100644 index 000000000..829e7b8d3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/validateNumberInRange.html @@ -0,0 +1,6 @@ +validateNumberInRange | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function validateNumberInRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Validates that a given number is within a specified range. +This function throws an error if the value is outside the defined minimum and maximum bounds.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • value: T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The number to validate.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • minValue: T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The minimum allowable value (inclusive).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • maxValue: T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The maximum allowable value (inclusive).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/verifyKeylessSignature.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/verifyKeylessSignature.html new file mode 100644 index 000000000..597f76da2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/verifyKeylessSignature.html @@ -0,0 +1 @@ +verifyKeylessSignature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function verifyKeylessSignature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/verifyKeylessSignatureWithJwkAndConfig.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/verifyKeylessSignatureWithJwkAndConfig.html new file mode 100644 index 000000000..fb76cebf7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/verifyKeylessSignatureWithJwkAndConfig.html @@ -0,0 +1,9 @@ +verifyKeylessSignatureWithJwkAndConfig | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function verifyKeylessSignatureWithJwkAndConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/functions/warnIfDevelopment.html b/docs/@aptos-labs/ts-sdk-7.0.0/functions/warnIfDevelopment.html new file mode 100644 index 000000000..a3bbcf6d2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/functions/warnIfDevelopment.html @@ -0,0 +1,5 @@ +warnIfDevelopment | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function warnIfDevelopment

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Logs a warning message to the console only in development environments. +This function helps reduce information leakage in production while maintaining +helpful warnings during development.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • message: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The warning message to log.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/hierarchy.html b/docs/@aptos-labs/ts-sdk-7.0.0/hierarchy.html new file mode 100644 index 000000000..3645bd39d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/hierarchy.html @@ -0,0 +1 @@ +@aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy Summary

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/index.html b/docs/@aptos-labs/ts-sdk-7.0.0/index.html new file mode 100644 index 000000000..da363da58 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/index.html @@ -0,0 +1,87 @@ +@aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TypeScript SDK for Aptos

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NPM Package Version +Node Version +NPM Package Downloads

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The TypeScript SDK allows you to connect, explore, and interact with the Aptos blockchain. You can use it to request data, send transactions, set up test environments, and more!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                For comprehensive guides, tutorials, and API reference, visit aptos.dev:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Install with your favorite package manager such as npm, yarn, or pnpm:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                pnpm install @aptos-labs/ts-sdk
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The SDK is compatible with the Bun runtime. Install the SDK using Bun's package manager:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                bun add @aptos-labs/ts-sdk
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                You can add the SDK to your web application using a script tag:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <script src="https://unpkg.com/@aptos-labs/ts-sdk/dist/browser/index.global.js"></script>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then, the SDK can be accessed through window.aptosSDK.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Create an Aptos client in order to access the SDK's functionality.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // You can use AptosConfig to choose which network to connect to
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // Aptos is the main entrypoint for all functions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const aptos = new Aptos(config); +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bun's HTTP/2 support is not fully mature yet. You need to disable HTTP/2 to ensure the SDK works properly:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const aptos = new Aptos(new AptosConfig({ network: Network.TESTNET, clientConfig: { http2: false } })); +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const accountInfo = await aptos.getAccountInfo({ accountAddress: "0x123" });
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const modules = await aptos.getAccountModules({ accountAddress: "0x123" });
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const tokens = await aptos.getAccountOwnedTokens({ accountAddress: "0x123" }); +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Note: We introduce a Single Sender authentication (as introduced in AIP-55). Generating an account defaults to Legacy Ed25519 authentication with the option to use the Single Sender unified authentication.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const account = Account.generate(); // defaults to Legacy Ed25519
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const account = Account.generate({ scheme: SigningSchemeInput.Secp256k1Ecdsa }); // Single Sender Secp256k1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const account = Account.generate({ scheme: SigningSchemeInput.Ed25519, legacy: false }); // Single Sender Ed25519 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // Create a private key instance for Ed25519 scheme
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const privateKey = new Ed25519PrivateKey("myEd25519privatekeystring");
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // Or for Secp256k1 scheme
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const privateKey = new Secp256k1PrivateKey("mySecp256k1privatekeystring");

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // Derive an account from private key

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // This is used as a local calculation and therefore is used to instantiate an `Account`
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // that has not had its authentication key rotated
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const account = Account.fromPrivateKey({ privateKey });

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // Also, can use this function that resolves the provided private key type and derives the public key from it
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // to support key rotation and differentiation between Legacy Ed25519 and Unified authentications
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const aptos = new Aptos();
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const account = await aptos.deriveAccountFromPrivateKey({ privateKey }); +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // Create a private key instance for Ed25519 scheme
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const privateKey = new Ed25519PrivateKey("myEd25519privatekeystring");
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // Or for Secp256k1 scheme
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const privateKey = new Secp256k1PrivateKey("mySecp256k1privatekeystring");

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // Derive an account from private key and address

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // Create an AccountAddress instance from the account address string.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const address = AccountAddress.from("myaccountaddressstring");
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // Derive an account from private key and address
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const account = Account.fromPrivateKeyAndAddress({ privateKey, address }); +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const path = "m/44'/637'/0'/0'/1";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const mnemonic = "various float stumble...";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const account = Account.fromDerivationPath({ path, mnemonic }); +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                /**
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * This example shows how to use the Aptos SDK to send a transaction.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * Don't forget to install @aptos-labs/ts-sdk before running this example!
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                */

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                import {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Account,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Aptos,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AptosConfig,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Network,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                } from "@aptos-labs/ts-sdk";

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                async function example() {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                console.log("This example will create two accounts (Alice and Bob) and send a transaction transferring APT to Bob's account.");

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // 0. Setup the client and test accounts
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const config = new AptosConfig({ network: Network.TESTNET });
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const aptos = new Aptos(config);

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                let alice = Account.generate();
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                let bob = Account.generate();

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                console.log("=== Addresses ===\n");
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                console.log(`Alice's address is: ${alice.accountAddress}`);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                console.log(`Bob's address is: ${bob.accountAddress}`);

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                console.log("\n=== Funding accounts ===\n");
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                await aptos.fundAccount({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                accountAddress: alice.accountAddress,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                amount: 100_000_000,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                });
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                await aptos.fundAccount({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                accountAddress: bob.accountAddress,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                amount: 100,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                });
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                console.log("Funded Alice and Bob's accounts!")

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // 1. Build
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                console.log("\n=== 1. Building the transaction ===\n");
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const transaction = await aptos.transaction.build.simple({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                sender: alice.accountAddress,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                data: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // All transactions on Aptos are implemented via smart contracts.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                function: "0x1::aptos_account::transfer",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                functionArguments: [bob.accountAddress, 100],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                });
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                console.log("Built the transaction!")

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // 2. Simulate (Optional)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                console.log("\n === 2. Simulating Response (Optional) === \n")
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const [userTransactionResponse] = await aptos.transaction.simulate.simple({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                signerPublicKey: alice.publicKey,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                transaction,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                });
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                console.log(userTransactionResponse)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // 3. Sign
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                console.log("\n=== 3. Signing transaction ===\n");
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const senderAuthenticator = aptos.transaction.sign({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                signer: alice,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                transaction,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                });
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                console.log("Signed the transaction!")

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // 4. Submit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                console.log("\n=== 4. Submitting transaction ===\n");
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const submittedTransaction = await aptos.transaction.submit.simple({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                transaction,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                senderAuthenticator,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                });

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                console.log(`Submitted transaction hash: ${submittedTransaction.hash}`);

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                // 5. Wait for results
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                console.log("\n=== 5. Waiting for result of transaction ===\n");
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const executedTransaction = await aptos.waitForTransaction({ transactionHash: submittedTransaction.hash });
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                console.log(executedTransaction)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                };

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                example(); +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If you see an import error when you do this:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It could be that your tsconfig.json is not using node. Make sure your moduleResolution in the tsconfig.json is set to node instead of bundler.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If you found a bug or would like to request a feature, please file an issue. +If, based on the discussion on an issue, you would like to offer a code change, please make a pull request. +If neither of these describes what you would like to contribute, check out the contributing guide.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To run a unit test in this repo, for example, the keyless end-to-end unit test in tests/e2e/api/keyless.test.ts:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                pnpm jest keyless.test.ts
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/AnsName.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/AnsName.html new file mode 100644 index 000000000..a64b4f8c0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/AnsName.html @@ -0,0 +1,39 @@ +AnsName | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface AnsName

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface AnsName {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      domain: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      domain_expiration_timestamp: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      expiration: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      expiration_status: ExpirationStatus;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      expiration_timestamp: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      is_primary: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      isInRenewablePeriod: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      owner_address?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      registered_address?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      subdomain?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      subdomain_expiration_policy: SubdomainExpirationPolicy;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      token_standard: AnsTokenStandard;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  domain: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The domain name. ie "aptos.apt" would have a domain of "aptos"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  domain_expiration_timestamp: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The expiration timestamp of the domain in milliseconds since epoch.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  expiration: Date

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is a derived date value. It takes into consideration if the name is a +subdomain and its expiration policy.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  expiration_status: ExpirationStatus

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The status of the name's expiration.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. Expired: The name has expired and is no longer resolvable.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. InGracePeriod: The name is within the grace period and is still +resolvable if it is renewed.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. Active: The name is active and is resolvable.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  expiration_timestamp: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The expiration timestamp of the name in milliseconds since epoch. Note, if +the name is not a subdomain, this will be the same as the domain expiration +timestamp.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  is_primary: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If the name is registered as a primary name for any account. It is +possible to have multiple primary names returned in a single query.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  isInRenewablePeriod: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whether the name is in the renewable period. This incorporates leading time +before the name expires and the grace period after the name expires.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  owner_address?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The address of the wallet that owns the name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  registered_address?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The address that the name points to. For example, if you send a transaction +to "aptos.apt" with a target address of "0x1", the registered_address will +be "0x1".

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  subdomain?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The subdomain name, if the name is a subdomain. ie "name.aptos.apt" would have a subdomain of "name"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  subdomain_expiration_policy: SubdomainExpirationPolicy

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The expiration policy for the subdomain. See SubdomainExpirationPolicy for more details.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  token_standard: AnsTokenStandard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The token standard for the name. See AnsTokenStandard for more details.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/AptosResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/AptosResponse.html new file mode 100644 index 000000000..422146ff9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/AptosResponse.html @@ -0,0 +1,16 @@ +AptosResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface AptosResponse<Req, Res>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The API response type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    the response status. i.e. 200

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    the response message

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    the response data

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    the url the request was made to

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    the response headers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    (optional) - the request object

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    (optional) - the request object

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface AptosResponse<Req, Res> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        config?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        data: Res;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        headers: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        request?: Req;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        status: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        statusText: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        url: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Req
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Res
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    config?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    data: Res
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    headers: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    request?: Req
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    status: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    statusText: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    url: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/Client.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/Client.html new file mode 100644 index 000000000..80e17bdb2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/Client.html @@ -0,0 +1,5 @@ +Client | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface Client

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface Client {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          provider<Req, Res>(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              requestOptions: ClientRequest<Req>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ): Promise<ClientResponse<Res>>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Sends a request to the specified URL with the given options.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Req
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Res

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • requestOptions: ClientRequest<Req>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The options for the request.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Represents a client for making requests to a service provider.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Optionalbody?: Req
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • OptionalcontentType?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Optionalheaders?: Record<string, any>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Optionalhttp2?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • method: "GET" | "POST"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • OptionaloriginMethod?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Optionaloverrides?: ClientHeadersType & {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                API_KEY?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                http2?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                WITH_CREDENTIALS?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            } & { AUTH_TOKEN?: string }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Optionalparams?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • url: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Returns Promise<ClientResponse<Res>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/ClientRequest.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/ClientRequest.html new file mode 100644 index 000000000..21e832f1a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/ClientRequest.html @@ -0,0 +1,13 @@ +ClientRequest | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface ClientRequest<Req>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Represents a client for making requests to a service provider.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The type of the response payload.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface ClientRequest<Req> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            body?: Req;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            contentType?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            headers?: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            http2?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            method: "GET" | "POST";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            originMethod?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            overrides?: ClientHeadersType & {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                API_KEY?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                http2?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                WITH_CREDENTIALS?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            } & { AUTH_TOKEN?: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            params?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            url: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Req

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The type of the request payload.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        body?: Req
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        contentType?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        headers?: Record<string, any>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        http2?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        method: "GET" | "POST"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        originMethod?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        overrides?: ClientHeadersType & {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            API_KEY?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            http2?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            WITH_CREDENTIALS?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        } & { AUTH_TOKEN?: string }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        params?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        url: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/ClientResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/ClientResponse.html new file mode 100644 index 000000000..c22bf0ae0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/ClientResponse.html @@ -0,0 +1,8 @@ +ClientResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface ClientResponse<Res>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface ClientResponse<Res> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              config?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              data: Res;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              headers?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              request?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              response?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              status: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              statusText: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Res
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          config?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          data: Res
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          headers?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          request?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          response?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          status: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          statusText: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/CreateAccountFromPrivateKeyArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/CreateAccountFromPrivateKeyArgs.html new file mode 100644 index 000000000..d6dad8c01 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/CreateAccountFromPrivateKeyArgs.html @@ -0,0 +1,8 @@ +CreateAccountFromPrivateKeyArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface CreateAccountFromPrivateKeyArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Arguments for creating an Account from a private key when the key type is unknown at compile time.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The private key used to create the account.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Optional address for the account.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Optional flag indicating if the account is a legacy account.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface CreateAccountFromPrivateKeyArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                address?: AccountAddressInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                legacy?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                privateKey: PrivateKeyInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            legacy?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            privateKey: PrivateKeyInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/CreateEd25519AccountFromPrivateKeyArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/CreateEd25519AccountFromPrivateKeyArgs.html new file mode 100644 index 000000000..672d63102 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/CreateEd25519AccountFromPrivateKeyArgs.html @@ -0,0 +1,9 @@ +CreateEd25519AccountFromPrivateKeyArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface CreateEd25519AccountFromPrivateKeyArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments for creating an Ed25519Account from an Ed25519PrivateKey. +To use the SingleKey authentication scheme, set legacy to false.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The private key used to create the account.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional address for the account.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indicates whether to use legacy authentication (default is true).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface CreateEd25519AccountFromPrivateKeyArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  address?: AccountAddressInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  legacy?: true;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  privateKey: Ed25519PrivateKey;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              legacy?: true
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              privateKey: Ed25519PrivateKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html new file mode 100644 index 000000000..0bac59805 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html @@ -0,0 +1,9 @@ +CreateEd25519SingleKeyAccountFromPrivateKeyArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface CreateEd25519SingleKeyAccountFromPrivateKeyArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Arguments for creating a SingleKeyAccount using an Ed25519PrivateKey. +The legacy property must be set to false to utilize the SingleKey authentication scheme.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Ed25519 private key used for account creation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Optional account address input.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Must be false to enable the SingleKey authentication scheme.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface CreateEd25519SingleKeyAccountFromPrivateKeyArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    address?: AccountAddressInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    legacy: false;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    privateKey: Ed25519PrivateKey;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                legacy: false
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                privateKey: Ed25519PrivateKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/CreateSingleKeyAccountFromPrivateKeyArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/CreateSingleKeyAccountFromPrivateKeyArgs.html new file mode 100644 index 000000000..8c1cb90b9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/CreateSingleKeyAccountFromPrivateKeyArgs.html @@ -0,0 +1,9 @@ +CreateSingleKeyAccountFromPrivateKeyArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface CreateSingleKeyAccountFromPrivateKeyArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Arguments for creating a SingleKeyAccount from a supported private key, excluding Ed25519PrivateKey. +The legacy argument is always false and cannot be set to true.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The private key used to create the account.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Optional address input for the account.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Always false; cannot be explicitly set to true.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface CreateSingleKeyAccountFromPrivateKeyArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      address?: AccountAddressInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      legacy?: false;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      privateKey: PrivateKeyInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  legacy?: false
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  privateKey: PrivateKeyInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/CursorPaginationArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/CursorPaginationArgs.html new file mode 100644 index 000000000..716babc26 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/CursorPaginationArgs.html @@ -0,0 +1,6 @@ +CursorPaginationArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface CursorPaginationArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Defines the parameters for paginating query results, including the starting position and maximum number of items to return.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Specifies the starting position of the query result. Default is at the beginning if undefined. This is not a number and must come from the API.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Specifies the maximum number of items to return. Default is 25.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface CursorPaginationArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        cursor?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        limit?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    cursor?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    limit?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/Deserializable.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/Deserializable.html new file mode 100644 index 000000000..1562e8b03 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/Deserializable.html @@ -0,0 +1,15 @@ +Deserializable | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface Deserializable<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This interface exists to define Deserializable inputs for functions that +deserialize a byte buffer into a type T. +It is not intended to be implemented or extended, because Typescript has no support +for static methods in interfaces.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface Deserializable<T> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          deserialize(deserializer: Deserializer): T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The type that this will deserialize into.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Implementation - BCS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Implementation - BCS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Deserializes the buffered bytes into an instance of the specified class type. +This function provides an alternative syntax for deserialization, allowing users to call +deserializer.deserialize(MyClass) instead of MyClass.deserialize(deserializer).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • deserializer: Deserializer

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The deserializer instance with the buffered bytes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Returns T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The deserialized value of class type T.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        const deserializer = new Deserializer(new Uint8Array([1, 2, 3]));
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        const value = deserializer.deserialize(MyClass); // where MyClass has a `deserialize` function
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        // value is now an instance of MyClass
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        // equivalent to `const value = MyClass.deserialize(deserializer)` +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/Ed25519SignerConstructorArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/Ed25519SignerConstructorArgs.html new file mode 100644 index 000000000..a944ef135 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/Ed25519SignerConstructorArgs.html @@ -0,0 +1,6 @@ +Ed25519SignerConstructorArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface Ed25519SignerConstructorArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Arguments required to create an instance of an Ed25519 signer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The private key used for signing.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Optional account address associated with the signer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface Ed25519SignerConstructorArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            address?: AccountAddressInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            privateKey: Ed25519PrivateKey;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        privateKey: Ed25519PrivateKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/Ed25519SignerFromDerivationPathArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/Ed25519SignerFromDerivationPathArgs.html new file mode 100644 index 000000000..87111109f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/Ed25519SignerFromDerivationPathArgs.html @@ -0,0 +1,6 @@ +Ed25519SignerFromDerivationPathArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface Ed25519SignerFromDerivationPathArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Arguments for creating an Ed25519 signer from a derivation path.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The derivation path for the Ed25519 key.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The mnemonic phrase used to generate the key.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface Ed25519SignerFromDerivationPathArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              mnemonic: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              path: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          mnemonic: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          path: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/EntryFunctionArgument.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/EntryFunctionArgument.html new file mode 100644 index 000000000..8c7e7f2d0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/EntryFunctionArgument.html @@ -0,0 +1,19 @@ +EntryFunctionArgument | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface EntryFunctionArgument

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Represents an argument for entry functions, providing methods to serialize the argument +to BCS-serialized bytes and convert it to different formats.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface EntryFunctionArgument {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                bcsToBytes(): Uint8Array;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                bcsToHex(): Hex;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                serialize(serializer: Serializer): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                serializeForEntryFunction(serializer: Serializer): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Implemented by

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Converts the BCS-serialized bytes of an argument into a hexadecimal representation. +This function is useful for obtaining a Hex instance that encapsulates the BCS-serialized bytes, +allowing for easier manipulation and representation of the data.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns Hex

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A Hex instance containing the BCS-serialized bytes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Serialize an argument to BCS-serialized bytes. +Serialize an argument as a type-agnostic, fixed byte sequence. The byte sequence contains +the number of the following bytes followed by the BCS-serialized bytes for a typed argument.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • serializer: Serializer

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The serializer used to convert the argument.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/GenerateAccountArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/GenerateAccountArgs.html new file mode 100644 index 000000000..3ed77a1ea --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/GenerateAccountArgs.html @@ -0,0 +1,6 @@ +GenerateAccountArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface GenerateAccountArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments for generating an opaque Account when the input signature scheme is unknown at compile time.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The signing scheme to use for account generation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indicates whether to use legacy account generation methods.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface GenerateAccountArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  legacy?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  scheme?: SigningSchemeInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              legacy?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/GenerateEd25519AccountArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/GenerateEd25519AccountArgs.html new file mode 100644 index 000000000..ef58f5169 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/GenerateEd25519AccountArgs.html @@ -0,0 +1,6 @@ +GenerateEd25519AccountArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface GenerateEd25519AccountArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Arguments for generating an Ed25519 account, specifying the signing scheme and legacy option.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The signing scheme to use for the account.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indicates if the account should be created in legacy mode.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface GenerateEd25519AccountArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    legacy?: true;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    scheme?: Ed25519;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                legacy?: true
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                scheme?: Ed25519
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/GenerateEd25519SingleKeyAccountArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/GenerateEd25519SingleKeyAccountArgs.html new file mode 100644 index 000000000..2fd3bbbad --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/GenerateEd25519SingleKeyAccountArgs.html @@ -0,0 +1,7 @@ +GenerateEd25519SingleKeyAccountArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface GenerateEd25519SingleKeyAccountArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Arguments for generating a SingleKeyAccount with an underlying Ed25519PrivateKey. +The legacy argument must be set to false to ensure an Ed25519SingleKeyAccount is returned.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Optional signing scheme input for the account.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indicates whether to use legacy account generation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface GenerateEd25519SingleKeyAccountArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      legacy: false;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      scheme?: Ed25519;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  legacy: false
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  scheme?: Ed25519
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/GenerateSingleKeyAccountArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/GenerateSingleKeyAccountArgs.html new file mode 100644 index 000000000..6b4c8fb81 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/GenerateSingleKeyAccountArgs.html @@ -0,0 +1,7 @@ +GenerateSingleKeyAccountArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface GenerateSingleKeyAccountArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Arguments for generating a SingleKeyAccount using a supported private key other than Ed25519PrivateKey. +The legacy argument is optional and defaults to false, and cannot be set to true.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The signing scheme to use for the account.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indicates whether to use legacy account generation (defaults to false).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface GenerateSingleKeyAccountArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        legacy?: false;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        scheme: Secp256k1Ecdsa;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    legacy?: false
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/InputGenerateMultiAgentRawTransactionArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/InputGenerateMultiAgentRawTransactionArgs.html new file mode 100644 index 000000000..b1d392cd3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/InputGenerateMultiAgentRawTransactionArgs.html @@ -0,0 +1,14 @@ +InputGenerateMultiAgentRawTransactionArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface InputGenerateMultiAgentRawTransactionArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Arguments for generating a multi-agent transaction, used in the generateTransaction() method of the transaction builder flow.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Configuration settings for Aptos.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The address of the transaction sender.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The transaction payload.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      List of secondary signer addresses.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional settings for transaction generation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional address of the fee payer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      aptosConfig: AptosConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      feePayerAddress?: AccountAddressInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      secondarySignerAddresses: AccountAddressInput[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/InputGenerateMultiAgentRawTransactionData.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/InputGenerateMultiAgentRawTransactionData.html new file mode 100644 index 000000000..d648bc430 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/InputGenerateMultiAgentRawTransactionData.html @@ -0,0 +1,12 @@ +InputGenerateMultiAgentRawTransactionData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface InputGenerateMultiAgentRawTransactionData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Holds user data input for generating a multi-agent transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The address of the primary sender.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The payload data for the transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        An array of addresses for secondary signers.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Optional transaction options.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indicates if a fee payer is included.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface InputGenerateMultiAgentRawTransactionData {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            data: InputGenerateTransactionPayloadData;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            options?: InputGenerateTransactionOptions;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            secondarySignerAddresses: AccountAddressInput[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            sender: AccountAddressInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            withFeePayer?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        secondarySignerAddresses: AccountAddressInput[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        withFeePayer?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/InputGenerateSingleSignerRawTransactionArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/InputGenerateSingleSignerRawTransactionArgs.html new file mode 100644 index 000000000..a17525ab5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/InputGenerateSingleSignerRawTransactionArgs.html @@ -0,0 +1,12 @@ +InputGenerateSingleSignerRawTransactionArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface InputGenerateSingleSignerRawTransactionArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Arguments for generating a single signer raw transaction, used in the transaction builder flow.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Configuration settings for Aptos.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The address of the sender.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The transaction payload.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional transaction generation options.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional address of the fee payer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface InputGenerateSingleSignerRawTransactionArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              aptosConfig: AptosConfig;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              feePayerAddress?: AccountAddressInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              options?: InputGenerateTransactionOptions;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              payload: AnyTransactionPayloadInstance;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              sender: AccountAddressInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          aptosConfig: AptosConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          feePayerAddress?: AccountAddressInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/InputGenerateSingleSignerRawTransactionData.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/InputGenerateSingleSignerRawTransactionData.html new file mode 100644 index 000000000..71ed23cd1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/InputGenerateSingleSignerRawTransactionData.html @@ -0,0 +1,12 @@ +InputGenerateSingleSignerRawTransactionData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface InputGenerateSingleSignerRawTransactionData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Holds user input data for generating a single signer transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The address of the account sending the transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The payload data for the transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Optional transaction options.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indicates if the fee payer is included.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Addresses for any secondary signers (not used in single signer transactions).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface InputGenerateSingleSignerRawTransactionData {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                data: InputGenerateTransactionPayloadData;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                options?: InputGenerateTransactionOptions;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                secondarySignerAddresses?: undefined;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                sender: AccountAddressInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                withFeePayer?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            secondarySignerAddresses?: undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            withFeePayer?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/InputTransactionPluginData.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/InputTransactionPluginData.html new file mode 100644 index 000000000..f0c49e6aa --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/InputTransactionPluginData.html @@ -0,0 +1,7 @@ +InputTransactionPluginData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface InputTransactionPluginData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface InputTransactionPluginData {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  pluginParams?: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transactionSubmitter?: TransactionSubmitter | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              pluginParams?: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Additional parameters that will be passed to the transaction submitter plugin if +configured.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              transactionSubmitter?: TransactionSubmitter | null

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              You can set this to override the configured transaction submitter (if any). +Conversely you can set this to null to ignore any configured transaction submitter.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/KeylessSigner.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/KeylessSigner.html new file mode 100644 index 000000000..0af3fe7b4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/KeylessSigner.html @@ -0,0 +1,38 @@ +KeylessSigner | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface KeylessSigner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                An interface which defines if an Account utilizes Keyless signing.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface KeylessSigner {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    accountAddress: AccountAddress;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    publicKey: AccountPublicKey;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    signingScheme: SigningScheme;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    checkKeylessAccountValidity(aptosConfig: AptosConfig): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    sign(message: HexInput): Signature;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    signTransaction(transaction: AnyRawTransaction): Signature;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    signTransactionWithAuthenticator(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        transaction: AnyRawTransaction,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ): AccountAuthenticator;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    signWithAuthenticator(message: HexInput): AccountAuthenticator;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    verifySignature(args: VerifySignatureArgs): boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    verifySignatureAsync(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        args: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            aptosConfig: AptosConfig;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            message: HexInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            signature: Signature;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ): Promise<boolean>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Implemented by

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Implementation - Account (On-Chain Model)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                accountAddress: AccountAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Account address associated with the account

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                publicKey: AccountPublicKey

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Public key associated with the account

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                signingScheme: SigningScheme

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Signing scheme used to sign transactions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Verify the given message and signature with the public key. +This function helps ensure the integrity and authenticity of a message by validating its signature.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A boolean indicating whether the signature is valid.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Verify the given message and signature with the public key. It fetches any on chain state if needed for verification.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • args: { aptosConfig: AptosConfig; message: HexInput; signature: Signature }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The arguments for verifying the signature.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • aptosConfig: AptosConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The configuration object for connecting to the Aptos network

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • message: HexInput

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Raw message data in HexInput format.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • signature: Signature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Signed message signature.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<boolean>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A boolean indicating whether the signature is valid.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/MultiEd25519SignerConstructorArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/MultiEd25519SignerConstructorArgs.html new file mode 100644 index 000000000..f3f73c22f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/MultiEd25519SignerConstructorArgs.html @@ -0,0 +1,4 @@ +MultiEd25519SignerConstructorArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface MultiEd25519SignerConstructorArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface MultiEd25519SignerConstructorArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      address?: AccountAddressInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      publicKey: MultiEd25519PublicKey;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      signers: Ed25519PrivateKey[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/OrderByArg.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/OrderByArg.html new file mode 100644 index 000000000..dba8ffca6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/OrderByArg.html @@ -0,0 +1,2 @@ +OrderByArg | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface OrderByArg<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface OrderByArg<T extends {}> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        orderBy?: OrderBy<T>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • T extends {}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    orderBy?: OrderBy<T>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PaginationArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PaginationArgs.html new file mode 100644 index 000000000..0d0a1b0e8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PaginationArgs.html @@ -0,0 +1,6 @@ +PaginationArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface PaginationArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Defines the parameters for paginating query results, including the starting position and maximum number of items to return.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Specifies the starting position of the query result. Default is 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Specifies the maximum number of items to return. Default is 25.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface PaginationArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          limit?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          offset?: AnyNumber;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      limit?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      offset?: AnyNumber
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.CallSite.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.CallSite.html new file mode 100644 index 000000000..468d861c6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.CallSite.html @@ -0,0 +1,22 @@ +CallSite | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface CallSite

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface CallSite {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            getColumnNumber(): number | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            getEnclosingColumnNumber(): number | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            getEnclosingLineNumber(): number | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            getEvalOrigin(): string | undefined;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            getFileName(): string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            getFunction(): Function | undefined;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            getFunctionName(): string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            getLineNumber(): number | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            getMethodName(): string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            getPosition(): number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            getPromiseIndex(): number | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            getScriptHash(): string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            getScriptNameOrSourceURL(): string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            getThis(): unknown;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            getTypeName(): string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            isAsync(): boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            isConstructor(): boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            isEval(): boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            isNative(): boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            isPromiseAll(): boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            isToplevel(): boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns number | null

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns number | null

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns number | null

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns string | undefined

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns string | null

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns Function | undefined

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns string | null

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns number | null

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns string | null

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns number | null

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns string | null

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns unknown

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns string | null

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.CreateCollectionOptions.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.CreateCollectionOptions.html new file mode 100644 index 000000000..d666711ce --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.CreateCollectionOptions.html @@ -0,0 +1,27 @@ +CreateCollectionOptions | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface CreateCollectionOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Options for creating a collection, allowing customization of various attributes such as supply limits, mutability of metadata, +and royalty settings.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Maximum number of tokens that can be minted in the collection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indicates if the collection description can be changed after creation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indicates if the royalty settings can be modified after creation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indicates if the collection URI can be updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indicates if individual token descriptions can be modified.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indicates if individual token names can be changed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indicates if individual token properties can be altered.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indicates if individual token URIs can be updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indicates if the creator can burn tokens from the collection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indicates if the creator can freeze tokens in the collection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The numerator for calculating royalties.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The denominator for calculating royalties.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface CreateCollectionOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              maxSupply?: AnyNumber;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              mutableDescription?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              mutableRoyalty?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              mutableTokenDescription?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              mutableTokenName?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              mutableTokenProperties?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              mutableTokenURI?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              mutableURI?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              royaltyDenominator?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              royaltyNumerator?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tokensBurnableByCreator?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tokensFreezableByCreator?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          maxSupply?: AnyNumber
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          mutableDescription?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          mutableRoyalty?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          mutableTokenDescription?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          mutableTokenName?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          mutableTokenProperties?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          mutableTokenURI?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          mutableURI?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          royaltyDenominator?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          royaltyNumerator?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tokensBurnableByCreator?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tokensFreezableByCreator?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.CurvePoint.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.CurvePoint.html new file mode 100644 index 000000000..b8727a4b6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.CurvePoint.html @@ -0,0 +1,26 @@ +CurvePoint | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface CurvePoint<F, P>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base interface for all elliptic curve Points.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface CurvePoint<F, P extends CurvePoint<F, P>> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                x: F;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                y: F;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Z?: F;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                add(other: P): P;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                assertValidity(): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                clearCofactor(): P;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                double(): P;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                equals(other: P): boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                is0(): boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                isSmallOrder(): boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                isTorsionFree(): boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                multiply(scalar: bigint): P;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                multiplyUnsafe(scalar: bigint): P;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                negate(): P;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                precompute(windowSize?: number, isLazy?: boolean): P;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                subtract(other: P): P;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                toAffine(invertedZ?: F): AffinePoint<F>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                toBytes(): Uint8Array;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                toHex(): string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • other: P

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns P

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Returns P

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Returns P

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • other: P

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • scalar: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns P

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • scalar: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns P

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Returns P

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Massively speeds up p.multiply(n) by using precompute tables (caching). See wNAF.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • OptionalwindowSize: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • OptionalisLazy: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                calculate cache now. Default (true) ensures it's deferred to first multiply()

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns P

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • other: P

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns P

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Converts point to 2D xy affine coordinates

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • OptionalinvertedZ: F

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns AffinePoint<F>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Returns Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Returns string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            x: F

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Affine x coordinate. Different from projective / extended X coordinate.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            y: F

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Affine y coordinate. Different from projective / extended Y coordinate.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Z?: F
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.ErrorOptions.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.ErrorOptions.html new file mode 100644 index 000000000..d4a7057cb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.ErrorOptions.html @@ -0,0 +1,2 @@ +ErrorOptions | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface ErrorOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface ErrorOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  cause?: unknown;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              cause?: unknown
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.EventEmitter.EventEmitterStatic.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.EventEmitter.EventEmitterStatic.html new file mode 100644 index 000000000..a76775005 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.EventEmitter.EventEmitterStatic.html @@ -0,0 +1,2 @@ +EventEmitterStatic | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface EventEmitterStatic

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface EventEmitterStatic {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    new EventEmitterStatic<
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        EventTypes extends ValidEventTypes = string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | symbol,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Context = any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    >(): EventEmitter<EventTypes, Context>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Constructors

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Constructors

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.EventEmitter.ListenerFn.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.EventEmitter.ListenerFn.html new file mode 100644 index 000000000..5cb514a43 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.EventEmitter.ListenerFn.html @@ -0,0 +1 @@ +ListenerFn | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface ListenerFn<Args>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Args extends any[] = any[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.GetAccountDomainsArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.GetAccountDomainsArgs.html new file mode 100644 index 000000000..5edd6d861 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.GetAccountDomainsArgs.html @@ -0,0 +1,5 @@ +GetAccountDomainsArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface GetAccountDomainsArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Arguments for retrieving the domains associated with a specific account.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The address of the account for which to fetch domains.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface GetAccountDomainsArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        accountAddress: AccountAddressInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        options?: PaginationArgs & OrderByArg<AnsName> & WhereArg<
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CurrentAptosNamesBoolExp,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        >;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    accountAddress: AccountAddressInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.GetAccountNamesArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.GetAccountNamesArgs.html new file mode 100644 index 000000000..0df598289 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.GetAccountNamesArgs.html @@ -0,0 +1,5 @@ +GetAccountNamesArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface GetAccountNamesArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Arguments for retrieving account names based on the specified account address.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The address of the account for which names are to be retrieved.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface GetAccountNamesArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          accountAddress: AccountAddressInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          options?: PaginationArgs & OrderByArg<AnsName> & WhereArg<
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CurrentAptosNamesBoolExp,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          >;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      accountAddress: AccountAddressInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.GetAccountSubdomainsArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.GetAccountSubdomainsArgs.html new file mode 100644 index 000000000..3ef11795e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.GetAccountSubdomainsArgs.html @@ -0,0 +1,5 @@ +GetAccountSubdomainsArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface GetAccountSubdomainsArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Arguments for retrieving subdomains associated with a specific account.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The address of the account for which to fetch subdomains.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface GetAccountSubdomainsArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            accountAddress: AccountAddressInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            options?: PaginationArgs & OrderByArg<AnsName> & WhereArg<
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CurrentAptosNamesBoolExp,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            >;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        accountAddress: AccountAddressInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.GetDomainSubdomainsArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.GetDomainSubdomainsArgs.html new file mode 100644 index 000000000..468719cc5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.GetDomainSubdomainsArgs.html @@ -0,0 +1,5 @@ +GetDomainSubdomainsArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface GetDomainSubdomainsArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Arguments for retrieving subdomains associated with a specific domain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The domain for which to fetch subdomains.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface GetDomainSubdomainsArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              domain: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              options?: PaginationArgs & OrderByArg<AnsName> & WhereArg<
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CurrentAptosNamesBoolExp,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              >;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          domain: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.Group.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.Group.html new file mode 100644 index 000000000..4157b0f08 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.Group.html @@ -0,0 +1,8 @@ +Group | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface Group<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface Group<T extends Group<T>> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                add(other: T): T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                double(): T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                equals(other: T): boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                multiply(scalar: bigint): T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                negate(): T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                subtract(other: T): T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                toAffine?(invertedZ?: any): AffinePoint<any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • other: T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Returns T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • other: T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • scalar: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Returns T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • other: T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • OptionalinvertedZ: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns AffinePoint<any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.InputSubmitTransactionDataInner.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.InputSubmitTransactionDataInner.html new file mode 100644 index 000000000..094f24e8d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.InputSubmitTransactionDataInner.html @@ -0,0 +1,5 @@ +InputSubmitTransactionDataInner | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface InputSubmitTransactionDataInner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              additionalSignersAuthenticators?: AccountAuthenticator[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              feePayerAuthenticator?: AccountAuthenticator
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              senderAuthenticator: AccountAuthenticator
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              transaction: AnyRawTransaction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.JwtHeader.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.JwtHeader.html new file mode 100644 index 000000000..e721abb3a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.JwtHeader.html @@ -0,0 +1,2 @@ +JwtHeader | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface JwtHeader

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface JwtHeader {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    kid: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                kid +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                kid: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.PendingDequeue.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.PendingDequeue.html new file mode 100644 index 000000000..5770523ec --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.PendingDequeue.html @@ -0,0 +1,8 @@ +PendingDequeue | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface PendingDequeue<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The AsyncQueue class is an async-aware data structure that provides a queue-like +behavior for managing asynchronous tasks or operations. +It allows to enqueue items and dequeue them asynchronously. +This is not thread-safe, but it is async concurrency safe, and +it does not guarantee ordering for those that call into and await on enqueue.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface PendingDequeue<T> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      reject: (reason?: AsyncQueueCancelledError) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      resolve: (value: T) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  reject: (reason?: AsyncQueueCancelledError) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  resolve: (value: T) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.PromiseFulfilledResult.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.PromiseFulfilledResult.html new file mode 100644 index 000000000..18f869a03 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.PromiseFulfilledResult.html @@ -0,0 +1,3 @@ +PromiseFulfilledResult | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface PromiseFulfilledResult<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface PromiseFulfilledResult<T> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        status: "fulfilled";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        value: T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    status: "fulfilled"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    value: T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.QueryNamesOptions.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.QueryNamesOptions.html new file mode 100644 index 000000000..961630adf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.QueryNamesOptions.html @@ -0,0 +1,4 @@ +QueryNamesOptions | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface QueryNamesOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Options for querying names, including pagination, ordering, and filtering criteria.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pagination and filtering options for the query.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface QueryNamesOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          options?: PaginationArgs & OrderByArg<AnsName> & WhereArg<
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CurrentAptosNamesBoolExp,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          >;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.RegisterNameParameters.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.RegisterNameParameters.html new file mode 100644 index 000000000..a61d6fd5e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.RegisterNameParameters.html @@ -0,0 +1,17 @@ +RegisterNameParameters | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface RegisterNameParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters for registering a name in the Aptos network.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Configuration settings for the Aptos network.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The account initiating the name registration.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The name to be registered.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The expiration policy for the name registration.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Whether the name can be transferred to another owner.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The address that will be set as the owner_address of the name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The address that this name will resolve to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface RegisterNameParameters {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            aptosConfig: AptosConfig;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            expiration:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | { policy: "domain"; years?: 1 }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | { policy: "subdomain:follow-domain" }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | { expirationDate: number; policy: "subdomain:independent" };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            options?: InputGenerateTransactionOptions;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            sender: AccountAddressInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            targetAddress?: AccountAddressInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            toAddress?: AccountAddressInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            transferable?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        aptosConfig: AptosConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        expiration:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | { policy: "domain"; years?: 1 }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | { policy: "subdomain:follow-domain" }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | { expirationDate: number; policy: "subdomain:independent" }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        targetAddress?: AccountAddressInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        transferable?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.WeierstrassPoint.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.WeierstrassPoint.html new file mode 100644 index 000000000..686e8335e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateCode.WeierstrassPoint.html @@ -0,0 +1,46 @@ +WeierstrassPoint | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface WeierstrassPoint<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Instance methods for 3D XYZ projective points.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface WeierstrassPoint<T> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              px: T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              py: T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              pz: T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              X: T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Y: T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Z: T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              get x(): T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              get y(): T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _setWindowSize(windowSize: number): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              add(other: WeierstrassPoint): WeierstrassPoint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              assertValidity(): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              clearCofactor(): WeierstrassPoint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              double(): WeierstrassPoint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              equals(other: WeierstrassPoint): boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              hasEvenY(): boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              is0(): boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isSmallOrder(): boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isTorsionFree(): boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              multiply(scalar: bigint): WeierstrassPoint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              multiplyAndAddUnsafe(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Q: WeierstrassPoint<T>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  a: bigint,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  b: bigint,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ): WeierstrassPoint<T> | undefined;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              multiplyUnsafe(scalar: bigint): WeierstrassPoint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              negate(): WeierstrassPoint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              precompute(windowSize?: number, isLazy?: boolean): WeierstrassPoint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              subtract(other: WeierstrassPoint): WeierstrassPoint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              toAffine(invertedZ?: T): AffinePoint<T>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              toBytes(isCompressed?: boolean): Uint8Array;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              toHex(isCompressed?: boolean): string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              toRawBytes(isCompressed?: boolean): Uint8Array;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Accessors

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • get x(): T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            affine x coordinate. Different from projective X.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • get y(): T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            affine y coordinate. Different from projective Y.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • windowSize: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            use p.precompute(windowSize)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            use p.y % 2n === 0n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns WeierstrassPoint<T> | undefined

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            use multiplyUnsafe

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Massively speeds up p.multiply(n) by using precompute tables (caching). See wNAF.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • OptionalwindowSize: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • OptionalisLazy: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              calculate cache now. Default (true) ensures it's deferred to first multiply()

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns WeierstrassPoint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Converts point to 2D xy affine coordinates

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • OptionalinvertedZ: T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns AffinePoint<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Encodes point using IEEE P1363 (DER) encoding. First byte is 2/3/4. Default = isCompressed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • OptionalisCompressed: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • OptionalisCompressed: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • OptionalisCompressed: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            use toBytes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          px: T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          use .X

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          py: T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          use .Y

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          pz: T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          use .Z

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          X: T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          projective X coordinate. Different from affine x.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Y: T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          projective Y coordinate. Different from affine y.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Z: T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          projective z coordinate

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateKeyFromDerivationPathArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateKeyFromDerivationPathArgs.html new file mode 100644 index 000000000..e9ae15f4c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/PrivateKeyFromDerivationPathArgs.html @@ -0,0 +1,6 @@ +PrivateKeyFromDerivationPathArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface PrivateKeyFromDerivationPathArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Arguments for deriving a private key using a mnemonic phrase and a specified BIP44 path.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The BIP44 derivation path for the key.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The mnemonic phrase used for key generation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface PrivateKeyFromDerivationPathArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                mnemonic: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                path: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            mnemonic: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            path: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/ProofFetchEvents.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/ProofFetchEvents.html new file mode 100644 index 000000000..8d7d770c6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/ProofFetchEvents.html @@ -0,0 +1,2 @@ +ProofFetchEvents | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface ProofFetchEvents

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface ProofFetchEvents {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  proofFetchFinish: (status: ProofFetchStatus) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              proofFetchFinish: (status: ProofFetchStatus) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/ScriptFunctionArgument.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/ScriptFunctionArgument.html new file mode 100644 index 000000000..57cca58df --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/ScriptFunctionArgument.html @@ -0,0 +1,10 @@ +ScriptFunctionArgument | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface ScriptFunctionArgument

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Represents an argument for script functions, providing methods to serialize and convert to bytes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface ScriptFunctionArgument {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    bcsToBytes(): Uint8Array;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    bcsToHex(): Hex;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    serialize(serializer: Serializer): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    serializeForScriptFunction(serializer: Serializer): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/SingleKeySigner.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/SingleKeySigner.html new file mode 100644 index 000000000..6b024e7ca --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/SingleKeySigner.html @@ -0,0 +1,39 @@ +SingleKeySigner | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface SingleKeySigner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An interface which defines if an Account utilizes SingleKey signing.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Such an account will use the AnyPublicKey enum to represent its public key when deriving the auth key.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface SingleKeySigner {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      accountAddress: AccountAddress;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      publicKey: AccountPublicKey;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      signingScheme: SigningScheme;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getAnyPublicKey(): AnyPublicKey;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      sign(message: HexInput): Signature;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      signTransaction(transaction: AnyRawTransaction): Signature;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      signTransactionWithAuthenticator(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transaction: AnyRawTransaction,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): AccountAuthenticator;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      signWithAuthenticator(message: HexInput): AccountAuthenticator;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      verifySignature(args: VerifySignatureArgs): boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      verifySignatureAsync(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          args: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              aptosConfig: AptosConfig;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              message: HexInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              signature: Signature;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): Promise<boolean>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Implemented by

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Implementation - Account (On-Chain Model)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  accountAddress: AccountAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Account address associated with the account

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  publicKey: AccountPublicKey

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Public key associated with the account

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  signingScheme: SigningScheme

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Signing scheme used to sign transactions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Verify the given message and signature with the public key. +This function helps ensure the integrity and authenticity of a message by validating its signature.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A boolean indicating whether the signature is valid.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Verify the given message and signature with the public key. It fetches any on chain state if needed for verification.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • args: { aptosConfig: AptosConfig; message: HexInput; signature: Signature }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The arguments for verifying the signature.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • aptosConfig: AptosConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The configuration object for connecting to the Aptos network

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • message: HexInput

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Raw message data in HexInput format.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • signature: Signature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Signed message signature.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns Promise<boolean>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A boolean indicating whether the signature is valid.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/SingleKeySignerConstructorArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/SingleKeySignerConstructorArgs.html new file mode 100644 index 000000000..46d3b4a56 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/SingleKeySignerConstructorArgs.html @@ -0,0 +1,6 @@ +SingleKeySignerConstructorArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface SingleKeySignerConstructorArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Arguments required to create a single key signer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The private key used for signing.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Optional account address associated with the signer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface SingleKeySignerConstructorArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        address?: AccountAddressInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        privateKey: PrivateKeyInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    privateKey: PrivateKeyInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/SingleKeySignerGenerateArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/SingleKeySignerGenerateArgs.html new file mode 100644 index 000000000..b297a7444 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/SingleKeySignerGenerateArgs.html @@ -0,0 +1,4 @@ +SingleKeySignerGenerateArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface SingleKeySignerGenerateArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Arguments for generating a single key signer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The signing scheme to be used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface SingleKeySignerGenerateArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          scheme?: SigningSchemeInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/TokenStandardArg.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/TokenStandardArg.html new file mode 100644 index 000000000..a34aab41f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/TokenStandardArg.html @@ -0,0 +1,4 @@ +TokenStandardArg | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface TokenStandardArg

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Represents the arguments for specifying a token standard.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Optional standard of the token.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface TokenStandardArg {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            tokenStandard?: TokenStandard;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        tokenStandard?: TokenStandard
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/TransactionArgument.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/TransactionArgument.html new file mode 100644 index 000000000..c22c9d75c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/TransactionArgument.html @@ -0,0 +1,23 @@ +TransactionArgument | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface TransactionArgument

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Represents an argument for entry functions, providing methods to serialize the argument +to BCS-serialized bytes and convert it to different formats.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface TransactionArgument {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              bcsToBytes(): Uint8Array;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              bcsToHex(): Hex;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              serialize(serializer: Serializer): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              serializeForEntryFunction(serializer: Serializer): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              serializeForScriptFunction(serializer: Serializer): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Implemented by

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Converts the BCS-serialized bytes of an argument into a hexadecimal representation. +This function is useful for obtaining a Hex instance that encapsulates the BCS-serialized bytes, +allowing for easier manipulation and representation of the data.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns Hex

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A Hex instance containing the BCS-serialized bytes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/TransactionSubmitter.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/TransactionSubmitter.html new file mode 100644 index 000000000..8677f9ad0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/TransactionSubmitter.html @@ -0,0 +1,13 @@ +TransactionSubmitter | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface TransactionSubmitter

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            You can implement this interface and set it in PluginSettings when building a +client to override the default transaction submission behavior. This is useful if +you'd like to submit transactions via a gas station for example.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            class MyGasStationClient implements TransactionSubmitter {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            async submitTransaction(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            args: { aptosConfig: AptosConfig } & InputSubmitTransactionData,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ): Promise<PendingTransactionResponse> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            // TODO: Implement the logic to submit the transaction to the gas station
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            const network = Network.MAINNET;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            const myGasStationClient = new MyGasStationClient(network);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            const config = new AptosConfig({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            network,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            pluginConfig: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            transactionSubmitter: myGasStationClient,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            });
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            const aptos = new Aptos(config); +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface TransactionSubmitter {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                submitTransaction(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    args: { aptosConfig: AptosConfig } & Omit<
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        InputSubmitTransactionData,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        "transactionSubmitter",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    >,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ): Promise<PendingTransactionResponse>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Implementation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Implementation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/TransactionWorkerEvents.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/TransactionWorkerEvents.html new file mode 100644 index 000000000..70b2f7536 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/TransactionWorkerEvents.html @@ -0,0 +1,7 @@ +TransactionWorkerEvents | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface TransactionWorkerEvents

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Defines the events emitted by the transaction worker during various stages of transaction processing. *

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface TransactionWorkerEvents {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  executionFinish: (data: ExecutionFinishEventData) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transactionExecuted: (data: SuccessEventData) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transactionExecutionFailed: (data: FailureEventData) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transactionSendFailed: (data: FailureEventData) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transactionSent: (data: SuccessEventData) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              executionFinish: (data: ExecutionFinishEventData) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              transactionExecuted: (data: SuccessEventData) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              transactionExecutionFailed: (data: FailureEventData) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              transactionSendFailed: (data: FailureEventData) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              transactionSent: (data: SuccessEventData) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/VerifyEd25519SignatureArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/VerifyEd25519SignatureArgs.html new file mode 100644 index 000000000..e0eab6bb3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/VerifyEd25519SignatureArgs.html @@ -0,0 +1,6 @@ +VerifyEd25519SignatureArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface VerifyEd25519SignatureArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Arguments required to verify an Ed25519 signature against a given message.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The message to be verified, represented in hexadecimal format.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Ed25519 signature to validate.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface VerifyEd25519SignatureArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    message: HexInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    signature: Ed25519Signature;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                message: HexInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                signature: Ed25519Signature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/VerifyMultiEd25519SignatureArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/VerifyMultiEd25519SignatureArgs.html new file mode 100644 index 000000000..6f6978736 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/VerifyMultiEd25519SignatureArgs.html @@ -0,0 +1,3 @@ +VerifyMultiEd25519SignatureArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface VerifyMultiEd25519SignatureArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface VerifyMultiEd25519SignatureArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      message: HexInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      signature: MultiEd25519Signature;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  message: HexInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/VerifyMultiKeySignatureArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/VerifyMultiKeySignatureArgs.html new file mode 100644 index 000000000..45edfdc5e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/VerifyMultiKeySignatureArgs.html @@ -0,0 +1,6 @@ +VerifyMultiKeySignatureArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface VerifyMultiKeySignatureArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Arguments required to verify a multi-key signature against a given message.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The original message that was signed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The multi-key signature to be verified.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface VerifyMultiKeySignatureArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        message: HexInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        signature: MultiKeySignature;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    message: HexInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/VerifySignatureArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/VerifySignatureArgs.html new file mode 100644 index 000000000..75a73b2d0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/VerifySignatureArgs.html @@ -0,0 +1,6 @@ +VerifySignatureArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface VerifySignatureArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Represents the arguments required to verify a digital signature.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The original message that was signed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The signature to be verified against the message.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface VerifySignatureArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          message: HexInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          signature: Signature;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      message: HexInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      signature: Signature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/VerifySingleKeySignatureArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/VerifySingleKeySignatureArgs.html new file mode 100644 index 000000000..d261a40a7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/VerifySingleKeySignatureArgs.html @@ -0,0 +1,6 @@ +VerifySingleKeySignatureArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface VerifySingleKeySignatureArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Arguments required to verify a single key signature for a given message.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The message to be verified, represented in hexadecimal format.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The signature that corresponds to the message.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface VerifySingleKeySignatureArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            message: HexInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            signature: AnySignature;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        message: HexInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        signature: AnySignature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/WhereArg.html b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/WhereArg.html new file mode 100644 index 000000000..703552e04 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/interfaces/WhereArg.html @@ -0,0 +1,2 @@ +WhereArg | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface WhereArg<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface WhereArg<T extends {}> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              where?: T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • T extends {}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          where?: T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/media/README.md b/docs/@aptos-labs/ts-sdk-7.0.0/media/README.md new file mode 100644 index 000000000..8268be293 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/media/README.md @@ -0,0 +1,43 @@ +## Examples + +These examples show how to build common tasks in Javascript and Typescript. + +### Running an example + +These examples use a linked version of the `aptos` package from the main repository. To run a test, first build the +package in the top level directory of this repo. + +```bash + pnpm build +``` + +At this point, you can run any of the examples in this directory. For example, to run the `simple_transfer` example: + +```bash + cd examples/javascript + pnpm install + pnpm run simple_transfer +``` + +This will then print out the results of the test accordingly. + +### Moving an example to use the published package + +Simply just replace the line in the associated `package.json` file: + +```json + "aptos": "link:../../.." +``` + +with the appropriate version e.g.: + +```json + "aptos": "latest" +``` + +You should be able then simply run: + +```bash + pnpm install + pnpm test +``` diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/modules.html b/docs/@aptos-labs/ts-sdk-7.0.0/modules.html new file mode 100644 index 000000000..c77c3203c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/modules.html @@ -0,0 +1 @@ +@aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Client

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Aptos
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AptosConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Implementation - Account (On-Chain Model)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AbstractedAccount
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AbstractKeylessAccount
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Account
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DerivableAbstractedAccount
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ed25519Account
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EphemeralKeyPair
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              FederatedKeylessAccount
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              KeylessAccount
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MultiKeyAccount
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SingleKeyAccount
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionAndProof
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CreateAccountFromPrivateKeyArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CreateEd25519AccountFromPrivateKeyArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CreateEd25519SingleKeyAccountFromPrivateKeyArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CreateSingleKeyAccountFromPrivateKeyArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ed25519SignerConstructorArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ed25519SignerFromDerivationPathArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GenerateAccountArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GenerateEd25519AccountArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GenerateEd25519SingleKeyAccountArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GenerateSingleKeyAccountArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PrivateKeyFromDerivationPathArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ProofFetchEvents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SingleKeySignerConstructorArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SingleKeySignerGenerateArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              VerifyEd25519SignatureArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              VerifyMultiKeySignatureArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              VerifySingleKeySignatureArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ProofFetchCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ProofFetchFailure
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ProofFetchStatus
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ProofFetchSuccess
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SingleKeySignerFromDerivationPathArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              createObjectAddress
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              createResourceAddress
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              createTokenAddress
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              createUserDerivedObjectAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Implementation - BCS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bool
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deserializer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EntryFunctionBytes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              FixedBytes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I256
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveJWK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveString
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveVector
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Serializable
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Serialized
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Serializer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              U128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              U16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              U256
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              U32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              U64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              U8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deserializable
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ensureBoolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              outOfRangeErrorMessage
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              validateNumberInRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Implementation - Client

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetAptosRequestOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetRequestOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PostAptosRequestOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PostRequestOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              aptosRequest
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              get
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getAptosFullNode
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getAptosPepperService
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              paginateWithCursor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              post
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              postAptosFaucet
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              postAptosFullNode
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              postAptosIndexer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              postAptosPepperService
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              postAptosProvingService
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              request

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Implementation - Network

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Network
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NetworkToChainId
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NetworkToFaucetAPI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NetworkToIndexerAPI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NetworkToNetworkName
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NetworkToNodeAPI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NetworkToPepperAPI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NetworkToProverAPI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Implementation - Serialization

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AddressInvalidReason
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HexInvalidReason
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              KeyType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AbstractMultiKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AbstractPublicKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AbstractSignature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AccountAddress
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AccountPublicKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AnyPublicKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AnySignature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AuthenticationKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ed25519PrivateKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ed25519PublicKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ed25519Signature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EphemeralCertificate
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EphemeralPublicKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EphemeralSignature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              FederatedKeylessPublicKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Groth16ProofAndStatement
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Groth16VerificationKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Groth16Zkp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hex
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              KeylessConfiguration
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              KeylessPublicKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              KeylessSignature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MultiEd25519PublicKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MultiEd25519Signature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MultiKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MultiKeySignature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ParsingError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PublicKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Secp256k1PrivateKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Secp256k1PublicKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Secp256k1Signature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Secp256r1PrivateKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Secp256r1PublicKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Secp256r1Signature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Signature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              WebAuthnSignature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ZeroKnowledgeSig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ZkProof
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              VerifySignatureArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AccountAddressInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DerivedKeys
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ParsingResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              VerifySignatureAsyncArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              APTOS_BIP44_REGEX
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              APTOS_HARDENED_REGEX
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EPK_HORIZON_SECS
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HARDENED_OFFSET
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MAX_AUD_VAL_BYTES
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MAX_COMMITED_EPK_BYTES
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MAX_EXTRA_FIELD_BYTES
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MAX_ISS_VAL_BYTES
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MAX_JWT_HEADER_B64_BYTES
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MAX_UID_KEY_BYTES
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MAX_UID_VAL_BYTES
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              bigIntToBytesLE
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              bytesToBigIntLE
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CKDPriv
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              deriveKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getKeylessConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              hashStrToField
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isCanonicalEd25519Signature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isValidBIP44Path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isValidHardenedPath
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              mnemonicToSeed
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              padAndPackBytesWithLen
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              poseidonHash
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              splitPath

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionWorkerEventsEnum
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagParserErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AccountAbstractionMessage
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AccountAuthenticator
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AccountAuthenticatorAbstraction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AccountAuthenticatorEd25519
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AccountAuthenticatorMultiEd25519
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AccountAuthenticatorMultiKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AccountAuthenticatorSingleKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AccountSequenceNumber
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ChainId
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EntryFunction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              FeePayerRawTransaction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Identifier
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ModuleId
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveOption
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MultiAgentRawTransaction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MultiAgentTransaction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MultiSig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MultiSigTransactionPayload
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RawTransaction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RawTransactionWithData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RotationProofChallenge
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Script
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SignedTransaction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SimpleTransaction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              StructTag
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionAuthenticator
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionAuthenticatorEd25519
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionAuthenticatorFeePayer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionAuthenticatorMultiAgent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionAuthenticatorMultiEd25519
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionAuthenticatorSingleSender
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionPayload
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionPayloadEntryFunction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionPayloadMultiSig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionPayloadScript
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionWorker
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTag
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagAddress
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagBool
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagGeneric
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagI128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagI16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagI256
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagI32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagI64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagI8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagParserError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagReference
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagSigner
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagStruct
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagU128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagU16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagU256
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagU32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagU64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagU8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagVector
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EntryFunctionArgument
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputGenerateMultiAgentRawTransactionArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputGenerateMultiAgentRawTransactionData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputGenerateSingleSignerRawTransactionArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputGenerateSingleSignerRawTransactionData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ScriptFunctionArgument
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionArgument
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionWorkerEvents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AnyRawTransaction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AnyRawTransactionInstance
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AnyTransactionPayloadInstance
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EntryFunctionABI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EntryFunctionArgumentTypes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ExecutionFinishEventData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              FailureEventData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              FunctionABI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputEntryFunctionData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputEntryFunctionDataWithABI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputEntryFunctionDataWithRemoteABI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputGenerateRawTransactionArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputGenerateTransactionData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputGenerateTransactionOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputGenerateTransactionPayloadData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputGenerateTransactionPayloadDataWithABI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputGenerateTransactionPayloadDataWithRemoteABI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputMultiSigData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputMultiSigDataWithABI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputMultiSigDataWithRemoteABI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputScriptData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputSimulateTransactionData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputSimulateTransactionOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputSubmitTransactionData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputViewFunctionData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputViewFunctionDataWithABI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputViewFunctionDataWithRemoteABI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputViewFunctionJsonData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ScriptFunctionArgumentTypes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SimpleEntryFunctionArgumentTypes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SuccessEventData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeArgument
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ViewFunctionABI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ViewFunctionJsonPayload
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              promiseFulfilledStatus
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              aptosCoinStructTag
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              buildTransaction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              checkOrConvertArgument
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              convertArgument
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              convertNumber
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              deriveTransactionType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              deserializeFromScriptArgument
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              fetchEntryFunctionAbi
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              fetchFunctionAbi
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              fetchModuleAbi
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              fetchViewFunctionAbi
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              findFirstNonSignerArg
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              generateRawTransaction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              generateSignedTransaction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              generateSignedTransactionForSimulation
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              generateSigningMessage
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              generateSigningMessageForSerializable
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              generateSigningMessageForTransaction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              generateTransactionPayload
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              generateTransactionPayloadWithABI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              generateUserTransactionHash
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              generateViewFunctionPayload
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              generateViewFunctionPayloadWithABI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getAuthenticatorForSimulation
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getFunctionParts
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              hashValues
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBcsAddress
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBcsBool
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBcsFixedBytes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBcsI128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBcsI16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBcsI256
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBcsI32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBcsI64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBcsI8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBcsString
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBcsU128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBcsU16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBcsU256
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBcsU32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBcsU64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBcsU8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBool
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isEmptyOption
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isEncodedEntryFunctionArgument
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isLargeNumber
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isNumber
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isScriptDataInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isString
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              objectStructTag
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              optionStructTag
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              parseTypeTag
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              standardizeTypeTags
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stringStructTag
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              throwTypeMismatch

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Implementation - Types

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetAccountAddressesForAuthKeyResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetAccountCoinsDataResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetAccountCollectionsWithOwnedTokenResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetAccountOwnedTokensFromCollectionResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetAccountOwnedTokensQueryResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetANSNameResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetChainTopUserTransactionsResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetCollectionDataResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetCurrentFungibleAssetBalancesResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetCurrentTokenOwnershipResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetDelegatedStakingActivitiesResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetEventsResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetFungibleAssetActivitiesResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetFungibleAssetMetadataResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetNumberOfDelegatorsResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetObjectDataQueryResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetOwnedTokensResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetProcessorStatusResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetTableItemsDataResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetTableItemsMetadataResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetTokenActivityResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetTokenDataResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GraphqlQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              OrderBy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              OrderByValue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TokenStandard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Implementation - Utils

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AptosApiType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ProcessorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DeserializableClass
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              APTOS_COIN
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              APTOS_FA
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DEFAULT_MAX_GAS_AMOUNT
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DEFAULT_TXN_EXP_SEC_FROM_NOW
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DEFAULT_TXN_TIMEOUT_SEC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MIN_MAX_GAS_AMOUNT
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RAW_TRANSACTION_SALT
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RAW_TRANSACTION_WITH_DATA_SALT
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              base64UrlDecode
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              convertAmountFromHumanReadableToOnChain
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              convertAmountFromOnChainToHumanReadable
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              floorToWholeHour
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getErrorMessage
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBun
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isEncodedStruct
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isValidFunctionInfo
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              normalizeBundle
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              nowInSeconds
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              parseEncodedStruct
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              sleep
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              truncateAddress
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              warnIfDevelopment

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Classes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AccountAuthenticatorNoAccountAuthenticator
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AptosApiError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              KeylessError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MultiEd25519Account
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PrivateKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionExecutable
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionExecutableEmpty
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionExecutableEntryFunction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionExecutableScript
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionExtraConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionExtraConfigV1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionInnerPayload
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionInnerPayloadV1

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Enumerations

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AccountAuthenticatorVariant
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AnyPublicKeyVariant
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AnySignatureVariant
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DeriveScheme
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EphemeralCertificateVariant
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EphemeralPublicKeyVariant
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EphemeralSignatureVariant
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ExpirationStatus
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              KeylessErrorCategory
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              KeylessErrorResolutionTip
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              KeylessErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MimeType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveAbility
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveFunctionVisibility
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PrivateKeyVariants
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RoleType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ScriptTransactionArgumentVariants
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SigningScheme
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SigningSchemeInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SubdomainExpirationPolicy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionAuthenticatorVariant
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionExecutableVariants
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionExtraConfigVariants
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionInnerPayloadVariants
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionPayloadVariants
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionResponseType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionVariants
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeTagVariants
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ZkpVariant

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Functions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              anyPublicKeyVariantToString
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              base64UrlToBytes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              convertPayloadToInnerPayload
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              deserializePublicKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              deserializeSignature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              fetchJWK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              fetchMoveFunctionAbi
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getIssAudAndUidVal
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getKeylessJWKs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getPageWithObfuscatedCursor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              hexToAsciiString
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBlockEpilogueTransactionResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBlockMetadataTransactionResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isEd25519Signature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isFeePayerSignature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isGenesisTransactionResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isKeylessSigner
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isMultiAgentSignature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isMultiEd25519Signature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isPendingTransactionResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isSecp256k1Signature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isSingleKeySigner
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isSingleSenderSignature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isStateCheckpointTransactionResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isUserTransactionResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isValidatorTransactionResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              paginateWithObfuscatedCursor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              pairedFaMetadataAddress
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              parseJwtHeader
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              verifyKeylessSignature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              verifyKeylessSignatureWithJwkAndConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interfaces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AnsName
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AptosResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ClientRequest
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ClientResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CursorPaginationArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputTransactionPluginData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              KeylessSigner
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MultiEd25519SignerConstructorArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              OrderByArg
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PaginationArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SingleKeySigner
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TokenStandardArg
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionSubmitter
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              VerifyMultiEd25519SignatureArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              WhereArg

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Modules

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PrivateCode

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Namespaces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AccountUtils

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Aliases

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AccountData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AccountSignature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AnsTokenStandard
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AnyNumber
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AptosRequest
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AptosSettings
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AuthenticationKeyScheme
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BaseAccountPublicKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Block
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BlockEndInfo
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BlockEpilogueTransactionResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BlockMetadataTransactionResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ClientConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ClientHeadersType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CommittedTransactionResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DecodedTableData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DeletedTableData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DirectWriteSet
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EntryFunctionPayloadResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Event
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EventGuid
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              FaucetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              FullNodeConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GasEstimation
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GenerateAccount
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GenerateAccountWithEd25519
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GenerateAccountWithSingleSignerSecp256k1Key
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GenesisPayload
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GenesisTransactionResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HexInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              IndexerConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputGenerateOrderlessTransactionOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputGenerateSequenceNumberTransactionOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Int128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Int16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Int256
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Int32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Int64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Int8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              LedgerInfo
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              LedgerVersionArg
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveAddressType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveFunction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveFunctionGenericTypeParam
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveFunctionId
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveInt128Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveInt16Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveInt256Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveInt32Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveInt64Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveInt8Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveModule
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveModuleBytecode
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveModuleId
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveObjectType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveOptionType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveScriptBytecode
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveStruct
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveStructField
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveStructId
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveStructType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveUint128Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveUint16Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveUint256Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveUint32Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveUint64Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveUint8Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveValue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MultisigPayloadResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PendingTransactionResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PluginConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PluginSettings
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PrivateKeyInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RawANSName
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ScriptPayloadResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ScriptWriteSet
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SingleKeySignerOrLegacyEd25519Account
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              StateCheckpointTransactionResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TableItemRequest
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionEd25519Signature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionFeePayerSignature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionGenerationConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionMultiAgentSignature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionMultiEd25519Signature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionPayloadResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionSecp256k1Signature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionSignature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TransactionSingleSenderSignature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Uint128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Uint16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Uint256
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Uint32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Uint64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Uint8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UserTransactionResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ValidatorTransactionResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              WaitForTransactionOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              WriteSet
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              WriteSetChange
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              WriteSetChangeDeleteModule
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              WriteSetChangeDeleteResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              WriteSetChangeDeleteTableItem
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              WriteSetChangeWriteModule
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              WriteSetChangeWriteResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              WriteSetChangeWriteTableItem

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variables

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ACCOUNT_ABSTRACTION_SIGNING_DATA_SALT
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              FIREBASE_AUTH_ISS_PATTERN
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TEXT_ENCODER
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/modules/AccountUtils.html b/docs/@aptos-labs/ts-sdk-7.0.0/modules/AccountUtils.html new file mode 100644 index 000000000..c43580c6b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/modules/AccountUtils.html @@ -0,0 +1,2 @@ +AccountUtils | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/modules/PrivateCode.EventEmitter.html b/docs/@aptos-labs/ts-sdk-7.0.0/modules/PrivateCode.EventEmitter.html new file mode 100644 index 000000000..38a41d29a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/modules/PrivateCode.EventEmitter.html @@ -0,0 +1 @@ +EventEmitter | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/modules/PrivateCode.html b/docs/@aptos-labs/ts-sdk-7.0.0/modules/PrivateCode.html new file mode 100644 index 000000000..ec97cd510 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/modules/PrivateCode.html @@ -0,0 +1 @@ +PrivateCode | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Module PrivateCode

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Implementation - Serialization

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    G1Bytes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    G2Bytes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Proof

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AsyncQueueCancelledError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PendingDequeue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Implementation - Types

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Groth16VerificationKeyResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    KeylessConfigurationResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Implementation - Other

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Build
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Simulate
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Submit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CreateCollectionOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetAccountDomainsArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetAccountNamesArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetAccountSubdomainsArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetDomainSubdomainsArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    QueryNamesOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    RegisterNameParameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PropertyValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ANS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ANS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Account

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Account

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Classes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AccountAbstraction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AsyncQueue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    EventEmitter
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TransactionManagement

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Coin

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Coin

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DigitalAsset

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DigitalAsset

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Enumerations

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CurrentAptosNamesSelectColumn
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Faucet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Faucet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    FungibleAsset

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    FungibleAsset

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    General

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    General

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interfaces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CallSite
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CurvePoint
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ErrorOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Group
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    InputSubmitTransactionDataInner
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    JwtHeader
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PromiseFulfilledResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    WeierstrassPoint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Keyless

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Keyless

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Namespaces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    EventEmitter

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Object

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AptosObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    References

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ArgumentMap → EventEmitter.ArgumentMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Staking

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Staking

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Table

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Table

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Aliases

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AbstractedAccountConstructorArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AccountInfo
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AffinePoint
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AptosApiErrorOpts
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ArrayBufferLike
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BigintComparisonExp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BooleanComparisonExp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CurrentAptosNamesAggregateBoolExp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CurrentAptosNamesAggregateBoolExpBoolAnd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CurrentAptosNamesAggregateBoolExpBoolOr
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CurrentAptosNamesAggregateBoolExpCount
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CurrentAptosNamesBoolExp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CurrentFungibleAssetBalancesBoolExp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DerivableAbstractedAccountArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Exclude
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Extract
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    FeePayerOrFeePayerAuthenticatorOrNeither
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Fp2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    FungibleAssetActivitiesBoolExp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    FungibleAssetMetadataBoolExp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetAccountAddressesForAuthKeyQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetAccountCoinsDataQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetAccountCollectionsWithOwnedTokensQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetAccountOwnedTokensFromCollectionQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetAccountOwnedTokensQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetChainTopUserTransactionsQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetCollectionDataQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetCurrentFungibleAssetBalancesQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetCurrentTokenOwnershipQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetDelegatedStakingActivitiesQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetEventsQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetFungibleAssetActivitiesQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetFungibleAssetMetadataQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetNamesQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetNumberOfDelegatorsQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetObjectDataQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetProcessorStatusQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetTableItemsDataQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetTableItemsMetadataQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetTokenActivityQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetTokenDataQuery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    InputMaybe
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    IntComparisonExp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    JsonbCastExp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    JsonbComparisonExp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Maybe
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MoveAnyStruct
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NumericComparisonExp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Omit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Pick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ProjPointType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Record
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Scalars
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    StringComparisonExp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TableItemsBoolExp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TableMetadatasBoolExp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TimestampComparisonExp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/AccountAddressInput.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/AccountAddressInput.html new file mode 100644 index 000000000..7f0b92c9a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/AccountAddressInput.html @@ -0,0 +1,2 @@ +AccountAddressInput | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias AccountAddressInput

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AccountAddressInput: HexInput | AccountAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The input for an account address, which can be either a hexadecimal string or a standard account address.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/AccountData.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/AccountData.html new file mode 100644 index 000000000..fd4b7b5bc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/AccountData.html @@ -0,0 +1,4 @@ +AccountData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias AccountData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The data associated with an account, including its sequence number.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type AccountData = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            authentication_key: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            sequence_number: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        authentication_key: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        sequence_number: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/AccountSignature.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/AccountSignature.html new file mode 100644 index 000000000..ec6c4d0e7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/AccountSignature.html @@ -0,0 +1,2 @@ +AccountSignature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias AccountSignature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The union of all single account signatures, including Ed25519, Secp256k1, and MultiEd25519 signatures.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/AnsTokenStandard.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/AnsTokenStandard.html new file mode 100644 index 000000000..6a5d32fe5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/AnsTokenStandard.html @@ -0,0 +1,3 @@ +AnsTokenStandard | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias AnsTokenStandard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AnsTokenStandard: "v1" | "v2"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The token standard for the ANS name. v1 is the original token standard, v2 is +the new token standard. v1 has been deprecated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/AnyNumber.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/AnyNumber.html new file mode 100644 index 000000000..faff7a9d7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/AnyNumber.html @@ -0,0 +1,2 @@ +AnyNumber | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias AnyNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AnyNumber: number | bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A number or a bigint value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/AnyRawTransaction.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/AnyRawTransaction.html new file mode 100644 index 000000000..eef5e4aab --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/AnyRawTransaction.html @@ -0,0 +1,2 @@ +AnyRawTransaction | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias AnyRawTransaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Unified type that holds all the return interfaces when generating different transaction types

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/AnyRawTransactionInstance.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/AnyRawTransactionInstance.html new file mode 100644 index 000000000..a115cef71 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/AnyRawTransactionInstance.html @@ -0,0 +1,2 @@ +AnyRawTransactionInstance | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias AnyRawTransactionInstance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AnyRawTransactionInstance:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | RawTransaction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | MultiAgentRawTransaction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | FeePayerRawTransaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Holds all return interfaces for generating different transaction types.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/AnyTransactionPayloadInstance.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/AnyTransactionPayloadInstance.html new file mode 100644 index 000000000..beb711bc9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/AnyTransactionPayloadInstance.html @@ -0,0 +1,3 @@ +AnyTransactionPayloadInstance | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias AnyTransactionPayloadInstance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    AnyTransactionPayloadInstance:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | TransactionPayloadEntryFunction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | TransactionPayloadScript
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | TransactionPayloadMultiSig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | TransactionInnerPayload

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The transaction payload type generated from the generateTransactionPayload() function, which can be an entry function, +script, or multi-signature payload.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/AptosRequest.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/AptosRequest.html new file mode 100644 index 000000000..0dd2474da --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/AptosRequest.html @@ -0,0 +1,20 @@ +AptosRequest | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias AptosRequest

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The API request type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      the url to make the request to, i.e. https://fullnode.devnet.aptoslabs.com/v1

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      the request method "GET" | "POST"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      (optional) - the endpoint to make the request to, i.e. transactions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      (optional) - the body of the request

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      (optional) - the content type to set the content-type header to, +by default is set to application/json

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      (optional) - query params to add to the request

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      (optional) - the local method the request came from

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      (optional) - a ClientConfig object type to override request data

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type AptosRequest = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          acceptType?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          body?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          contentType?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          method: "GET" | "POST";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          originMethod?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          overrides?: ClientConfig & FullNodeConfig & IndexerConfig & FaucetConfig;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          params?: Record<string, string | AnyNumber | boolean | undefined>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          path?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          url: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      acceptType?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      body?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      contentType?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      method: "GET" | "POST"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      originMethod?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      params?: Record<string, string | AnyNumber | boolean | undefined>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      path?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      url: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/AptosSettings.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/AptosSettings.html new file mode 100644 index 000000000..7b22b5c4f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/AptosSettings.html @@ -0,0 +1,15 @@ +AptosSettings | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias AptosSettings

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Configuration options for initializing the SDK, allowing customization of its behavior and interaction with the Aptos network.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type AptosSettings = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            client?: Client;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            clientConfig?: ClientConfig;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            faucet?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            faucetConfig?: FaucetConfig;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            fullnode?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            fullnodeConfig?: FullNodeConfig;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            indexer?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            indexerConfig?: IndexerConfig;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            network?: Network;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            pepper?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            pluginSettings?: PluginSettings;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            prover?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            transactionGenerationConfig?: TransactionGenerationConfig;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        client?: Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        clientConfig?: ClientConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        faucet?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        faucetConfig?: FaucetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        fullnode?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        fullnodeConfig?: FullNodeConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        indexer?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        indexerConfig?: IndexerConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        network?: Network
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        pepper?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        pluginSettings?: PluginSettings
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        prover?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        transactionGenerationConfig?: TransactionGenerationConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/AuthenticationKeyScheme.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/AuthenticationKeyScheme.html new file mode 100644 index 000000000..5837cb3fc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/AuthenticationKeyScheme.html @@ -0,0 +1,2 @@ +AuthenticationKeyScheme | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias AuthenticationKeyScheme

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AuthenticationKeyScheme: SigningScheme | DeriveScheme

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A list of supported Authentication Key schemes in Aptos, consisting of combinations of signing schemes and derive schemes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/BaseAccountPublicKey.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/BaseAccountPublicKey.html new file mode 100644 index 000000000..a534ab3ae --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/BaseAccountPublicKey.html @@ -0,0 +1 @@ +BaseAccountPublicKey | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias BaseAccountPublicKey

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BaseAccountPublicKey:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | Ed25519PublicKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | AnyPublicKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | MultiKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | MultiEd25519PublicKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/Block.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/Block.html new file mode 100644 index 000000000..c5bd62617 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/Block.html @@ -0,0 +1,9 @@ +Block | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias Block

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A Block type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type Block = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  block_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  block_height: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  block_timestamp: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  first_version: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  last_version: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transactions?: TransactionResponse[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              block_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              block_height: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              block_timestamp: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              first_version: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              last_version: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              transactions?: TransactionResponse[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The transactions in the block in sequential order

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/BlockEndInfo.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/BlockEndInfo.html new file mode 100644 index 000000000..ae01ecb73 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/BlockEndInfo.html @@ -0,0 +1,6 @@ +BlockEndInfo | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias BlockEndInfo

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Describes the gas state of the block, indicating whether the block gas limit has been reached.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type BlockEndInfo = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    block_approx_output_size: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    block_effective_block_gas_units: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    block_gas_limit_reached: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    block_output_limit_reached: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                block_approx_output_size: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                block_effective_block_gas_units: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                block_gas_limit_reached: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                block_output_limit_reached: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/BlockEpilogueTransactionResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/BlockEpilogueTransactionResponse.html new file mode 100644 index 000000000..b0472ccd8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/BlockEpilogueTransactionResponse.html @@ -0,0 +1,18 @@ +BlockEpilogueTransactionResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias BlockEpilogueTransactionResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A transaction executed at the end of a block that tracks data from the entire block.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type BlockEpilogueTransactionResponse = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      accumulator_root_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      block_end_info: BlockEndInfo | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      changes: WriteSetChange[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      event_root_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      gas_used: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      state_change_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      state_checkpoint_hash: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      success: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      timestamp: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: BlockEpilogue;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      version: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      vm_status: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  accumulator_root_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  block_end_info: BlockEndInfo | null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  changes: WriteSetChange[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Final state of resources changed by the transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  event_root_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  gas_used: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  state_change_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  state_checkpoint_hash: string | null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  success: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whether the transaction was successful

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  timestamp: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  vm_status: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The VM status of the transaction, can tell useful information in a failure

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/BlockMetadataTransactionResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/BlockMetadataTransactionResponse.html new file mode 100644 index 000000000..e86e78b05 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/BlockMetadataTransactionResponse.html @@ -0,0 +1,27 @@ +BlockMetadataTransactionResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias BlockMetadataTransactionResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The structure representing a blockchain block with its height.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type BlockMetadataTransactionResponse = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        accumulator_root_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        changes: WriteSetChange[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        epoch: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        event_root_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        events: Event[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        failed_proposer_indices: number[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        gas_used: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        previous_block_votes_bitvec: number[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        proposer: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        round: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        state_change_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        state_checkpoint_hash: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        success: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        timestamp: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type: BlockMetadata;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        version: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        vm_status: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    accumulator_root_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    changes: WriteSetChange[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Final state of resources changed by the transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    epoch: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    event_root_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    events: Event[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The events emitted at the block creation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    failed_proposer_indices: number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The indices of the proposers who failed to propose

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    gas_used: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    id: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    previous_block_votes_bitvec: number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Previous block votes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    proposer: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    round: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    state_change_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    state_checkpoint_hash: string | null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    success: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whether the transaction was successful

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    timestamp: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    version: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    vm_status: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The VM status of the transaction, can tell useful information in a failure

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/ClientConfig.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/ClientConfig.html new file mode 100644 index 000000000..2b62459be --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/ClientConfig.html @@ -0,0 +1,7 @@ +ClientConfig | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias ClientConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ClientConfig: ClientHeadersType & {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          API_KEY?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          http2?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          WITH_CREDENTIALS?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A configuration object for requests to the server, including API key, extra headers, and cookie handling options.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Security Note: Consider implementing client-side rate limiting in your application to prevent +accidental API abuse. You can use libraries like 'bottleneck' or 'p-queue' to limit request rates.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      import Bottleneck from 'bottleneck';

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      // Create a limiter that allows 10 requests per second
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      const limiter = new Bottleneck({ minTime: 100, maxConcurrent: 5 });

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      // Wrap your Aptos calls with the limiter
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      const result = await limiter.schedule(() => aptos.getAccountInfo({ accountAddress })); +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/ClientHeadersType.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/ClientHeadersType.html new file mode 100644 index 000000000..185209aa3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/ClientHeadersType.html @@ -0,0 +1,3 @@ +ClientHeadersType | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias ClientHeadersType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        General type definition for client headers.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type ClientHeadersType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HEADERS?: Record<string, string | number | boolean>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HEADERS?: Record<string, string | number | boolean>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/CommittedTransactionResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/CommittedTransactionResponse.html new file mode 100644 index 000000000..55cf4338a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/CommittedTransactionResponse.html @@ -0,0 +1,2 @@ +CommittedTransactionResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias CommittedTransactionResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The response for a committed transaction, which can be one of several transaction types.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/DecodedTableData.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/DecodedTableData.html new file mode 100644 index 000000000..4d57fbfbf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/DecodedTableData.html @@ -0,0 +1,10 @@ +DecodedTableData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias DecodedTableData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The decoded data for a table, including its key in JSON format.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type DecodedTableData = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                key: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                key_type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                value: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                value_type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            key: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Key of table in JSON

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            key_type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type of key

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            value: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Value of table in JSON

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            value_type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type of value

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/DeletedTableData.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/DeletedTableData.html new file mode 100644 index 000000000..98cab4f0a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/DeletedTableData.html @@ -0,0 +1,6 @@ +DeletedTableData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias DeletedTableData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Data for a deleted table entry.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type DeletedTableData = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  key: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  key_type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              key: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deleted key

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              key_type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deleted key type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/DerivedKeys.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/DerivedKeys.html new file mode 100644 index 000000000..06a9d73a0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/DerivedKeys.html @@ -0,0 +1,4 @@ +DerivedKeys | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias DerivedKeys

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Contains the derived cryptographic key as a Uint8Array.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type DerivedKeys = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    chainCode: Uint8Array;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    key: Uint8Array;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                chainCode: Uint8Array
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                key: Uint8Array
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/DeserializableClass.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/DeserializableClass.html new file mode 100644 index 000000000..16f77c167 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/DeserializableClass.html @@ -0,0 +1,5 @@ +DeserializableClass | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias DeserializableClass<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type DeserializableClass<T extends Serializable> = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      deserialize(deserializer: Deserializer): T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Implementation - Utils

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Implementation - Utils

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Deserializes a serialized object using the provided deserializer. +This function allows you to reconstruct an object from its serialized form.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • deserializer: Deserializer

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An instance of the Deserializer used to read the serialized data.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/DirectWriteSet.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/DirectWriteSet.html new file mode 100644 index 000000000..0eb870b52 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/DirectWriteSet.html @@ -0,0 +1,5 @@ +DirectWriteSet | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias DirectWriteSet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The set of direct write operations, identified by a type string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type DirectWriteSet = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        changes: WriteSetChange[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        events: Event[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    changes: WriteSetChange[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    events: Event[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/EntryFunctionABI.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/EntryFunctionABI.html new file mode 100644 index 000000000..ea8841527 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/EntryFunctionABI.html @@ -0,0 +1,2 @@ +EntryFunctionABI | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias EntryFunctionABI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      EntryFunctionABI: FunctionABI & { signers?: number }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface for an Entry function's ABI, enabling type checking and input conversion for ABI-based transaction submissions.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/EntryFunctionArgumentTypes.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/EntryFunctionArgumentTypes.html new file mode 100644 index 000000000..9c788774f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/EntryFunctionArgumentTypes.html @@ -0,0 +1,2 @@ +EntryFunctionArgumentTypes | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias EntryFunctionArgumentTypes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        EntryFunctionArgumentTypes:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | Bool
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | U8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | U16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | U32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | U64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | U128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | U256
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | I8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | I16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | I32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | I64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | I128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | I256
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | AccountAddress
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | MoveVector<EntryFunctionArgumentTypes>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | MoveOption<EntryFunctionArgumentTypes>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | MoveString
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | FixedBytes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Entry function arguments for building a raw transaction using BCS serialized arguments.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/EntryFunctionPayloadResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/EntryFunctionPayloadResponse.html new file mode 100644 index 000000000..1102a0e37 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/EntryFunctionPayloadResponse.html @@ -0,0 +1,8 @@ +EntryFunctionPayloadResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias EntryFunctionPayloadResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The response payload for an entry function, containing the type of the entry.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type EntryFunctionPayloadResponse = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              arguments: any[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              function: MoveFunctionId;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type_arguments: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          arguments: any[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Arguments of the function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          function: MoveFunctionId
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type_arguments: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type arguments of the function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/Event.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/Event.html new file mode 100644 index 000000000..8d830b39d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/Event.html @@ -0,0 +1,6 @@ +Event | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias Event

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type Event = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                data: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                guid: EventGuid;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                sequence_number: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            data: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The JSON representation of the event

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            guid: EventGuid
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            sequence_number: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/EventGuid.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/EventGuid.html new file mode 100644 index 000000000..836329796 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/EventGuid.html @@ -0,0 +1,4 @@ +EventGuid | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias EventGuid

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The structure for an event, identified by a unique GUID.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type EventGuid = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  account_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  creation_number: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              account_address: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              creation_number: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/ExecutionFinishEventData.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/ExecutionFinishEventData.html new file mode 100644 index 000000000..ed6d5e695 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/ExecutionFinishEventData.html @@ -0,0 +1,3 @@ +ExecutionFinishEventData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias ExecutionFinishEventData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The payload for when the worker has finished its job.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type ExecutionFinishEventData = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    message: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                message: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/FailureEventData.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/FailureEventData.html new file mode 100644 index 000000000..2b3da8a28 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/FailureEventData.html @@ -0,0 +1,4 @@ +FailureEventData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias FailureEventData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The payload for a failure event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type FailureEventData = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      error: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      message: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  error: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  message: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/FaucetConfig.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/FaucetConfig.html new file mode 100644 index 000000000..1d01792d5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/FaucetConfig.html @@ -0,0 +1,2 @@ +FaucetConfig | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias FaucetConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    FaucetConfig: ClientHeadersType & { AUTH_TOKEN?: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A configuration object for a faucet, including optional authentication and headers for requests.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/FullNodeConfig.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/FullNodeConfig.html new file mode 100644 index 000000000..625f51519 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/FullNodeConfig.html @@ -0,0 +1,2 @@ +FullNodeConfig | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias FullNodeConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      FullNodeConfig: ClientHeadersType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A configuration object for a Fullnode, allowing for the inclusion of extra headers in requests.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/FunctionABI.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/FunctionABI.html new file mode 100644 index 000000000..a8d8af44b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/FunctionABI.html @@ -0,0 +1,4 @@ +FunctionABI | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias FunctionABI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Data needed for a generic function ABI, applicable to both view and entry functions.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type FunctionABI = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            parameters: TypeTag[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            typeParameters: MoveFunctionGenericTypeParam[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        parameters: TypeTag[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GasEstimation.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GasEstimation.html new file mode 100644 index 000000000..5f738c208 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GasEstimation.html @@ -0,0 +1,8 @@ +GasEstimation | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GasEstimation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The output of the estimate gas API, including the deprioritized estimate for the gas unit price.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type GasEstimation = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              deprioritized_gas_estimate?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              gas_estimate: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              prioritized_gas_estimate?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          deprioritized_gas_estimate?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The deprioritized estimate for the gas unit price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          gas_estimate: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The current estimate for the gas unit price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          prioritized_gas_estimate?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The prioritized estimate for the gas unit price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GenerateAccount.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GenerateAccount.html new file mode 100644 index 000000000..8fe3d0a39 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GenerateAccount.html @@ -0,0 +1 @@ +GenerateAccount | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GenerateAccount

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GenerateAccountWithEd25519.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GenerateAccountWithEd25519.html new file mode 100644 index 000000000..cbab37f6d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GenerateAccountWithEd25519.html @@ -0,0 +1,4 @@ +GenerateAccountWithEd25519 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GenerateAccountWithEd25519

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Input type to generate an account using the Ed25519 signing scheme.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type GenerateAccountWithEd25519 = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  legacy: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  scheme: Ed25519;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              legacy: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              scheme: Ed25519
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GenerateAccountWithSingleSignerSecp256k1Key.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GenerateAccountWithSingleSignerSecp256k1Key.html new file mode 100644 index 000000000..f952e5824 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GenerateAccountWithSingleSignerSecp256k1Key.html @@ -0,0 +1,4 @@ +GenerateAccountWithSingleSignerSecp256k1Key | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GenerateAccountWithSingleSignerSecp256k1Key

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Input type to generate an account with a Single Signer using Secp256k1.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type GenerateAccountWithSingleSignerSecp256k1Key = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    legacy?: false;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    scheme: Secp256k1Ecdsa;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                legacy?: false
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GenesisPayload.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GenesisPayload.html new file mode 100644 index 000000000..d0779947c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GenesisPayload.html @@ -0,0 +1,4 @@ +GenesisPayload | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GenesisPayload

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The payload for the genesis block containing the type of the payload.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type GenesisPayload = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      write_set: WriteSet;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  write_set: WriteSet
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GenesisTransactionResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GenesisTransactionResponse.html new file mode 100644 index 000000000..8cf29e2b4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GenesisTransactionResponse.html @@ -0,0 +1,19 @@ +GenesisTransactionResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GenesisTransactionResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The response for a genesis transaction, indicating the type of transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type GenesisTransactionResponse = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        accumulator_root_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        changes: WriteSetChange[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        event_root_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        events: Event[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        gas_used: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        payload: GenesisPayload;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        state_change_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        state_checkpoint_hash?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        success: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type: Genesis;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        version: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        vm_status: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    accumulator_root_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    changes: WriteSetChange[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Final state of resources changed by the transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    event_root_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    events: Event[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Events emitted during genesis

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    gas_used: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    state_change_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    state_checkpoint_hash?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    success: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whether the transaction was successful

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type: Genesis
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    version: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    vm_status: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The VM status of the transaction, can tell useful information in a failure

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetANSNameResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetANSNameResponse.html new file mode 100644 index 000000000..96b2c6855 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetANSNameResponse.html @@ -0,0 +1,2 @@ +GetANSNameResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetANSNameResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The response containing the current Aptos names from the GetNamesQuery.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetAccountAddressesForAuthKeyResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetAccountAddressesForAuthKeyResponse.html new file mode 100644 index 000000000..c1b55a37b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetAccountAddressesForAuthKeyResponse.html @@ -0,0 +1,2 @@ +GetAccountAddressesForAuthKeyResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetAccountAddressesForAuthKeyResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The account addresses for an authentication key.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetAccountCoinsDataResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetAccountCoinsDataResponse.html new file mode 100644 index 000000000..d52837fff --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetAccountCoinsDataResponse.html @@ -0,0 +1,2 @@ +GetAccountCoinsDataResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetAccountCoinsDataResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The current balances of fungible assets for an account.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetAccountCollectionsWithOwnedTokenResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetAccountCollectionsWithOwnedTokenResponse.html new file mode 100644 index 000000000..3948edace --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetAccountCollectionsWithOwnedTokenResponse.html @@ -0,0 +1,2 @@ +GetAccountCollectionsWithOwnedTokenResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetAccountCollectionsWithOwnedTokenResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The response structure for retrieving account collections associated with owned tokens.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetAccountOwnedTokensFromCollectionResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetAccountOwnedTokensFromCollectionResponse.html new file mode 100644 index 000000000..751172e16 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetAccountOwnedTokensFromCollectionResponse.html @@ -0,0 +1,2 @@ +GetAccountOwnedTokensFromCollectionResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetAccountOwnedTokensFromCollectionResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetAccountOwnedTokensFromCollectionResponse: GetAccountOwnedTokensFromCollectionQuery["current_token_ownerships_v2"]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The response containing the current token ownerships for an account from a specific collection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetAccountOwnedTokensQueryResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetAccountOwnedTokensQueryResponse.html new file mode 100644 index 000000000..ed8426078 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetAccountOwnedTokensQueryResponse.html @@ -0,0 +1,2 @@ +GetAccountOwnedTokensQueryResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetAccountOwnedTokensQueryResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GetAccountOwnedTokensQueryResponse: GetAccountOwnedTokensQuery["current_token_ownerships_v2"]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The response structure for querying tokens owned by an account.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetAptosRequestOptions.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetAptosRequestOptions.html new file mode 100644 index 000000000..e88b07795 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetAptosRequestOptions.html @@ -0,0 +1,2 @@ +GetAptosRequestOptions | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetAptosRequestOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GetAptosRequestOptions: Omit<GetRequestOptions, "type">

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Options for making a request to the Aptos API, excluding the "type" field.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetChainTopUserTransactionsResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetChainTopUserTransactionsResponse.html new file mode 100644 index 000000000..5c5f462aa --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetChainTopUserTransactionsResponse.html @@ -0,0 +1,2 @@ +GetChainTopUserTransactionsResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetChainTopUserTransactionsResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetChainTopUserTransactionsResponse: GetChainTopUserTransactionsQuery["user_transactions"]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The response structure for retrieving user transactions from the top of the blockchain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetCollectionDataResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetCollectionDataResponse.html new file mode 100644 index 000000000..a075b394b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetCollectionDataResponse.html @@ -0,0 +1,2 @@ +GetCollectionDataResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetCollectionDataResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      GetCollectionDataResponse: GetCollectionDataQuery["current_collections_v2"][0]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The response structure for retrieving data from the current collections.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetCurrentFungibleAssetBalancesResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetCurrentFungibleAssetBalancesResponse.html new file mode 100644 index 000000000..564060c96 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetCurrentFungibleAssetBalancesResponse.html @@ -0,0 +1,2 @@ +GetCurrentFungibleAssetBalancesResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetCurrentFungibleAssetBalancesResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The current balances of fungible assets for a specific query.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetCurrentTokenOwnershipResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetCurrentTokenOwnershipResponse.html new file mode 100644 index 000000000..73f83f39b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetCurrentTokenOwnershipResponse.html @@ -0,0 +1,2 @@ +GetCurrentTokenOwnershipResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetCurrentTokenOwnershipResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GetCurrentTokenOwnershipResponse: GetCurrentTokenOwnershipQuery["current_token_ownerships_v2"][0]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The response structure for retrieving the current token ownership details.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetDelegatedStakingActivitiesResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetDelegatedStakingActivitiesResponse.html new file mode 100644 index 000000000..3c69b149c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetDelegatedStakingActivitiesResponse.html @@ -0,0 +1,2 @@ +GetDelegatedStakingActivitiesResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetDelegatedStakingActivitiesResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The response containing the delegated staking activities from the query.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetEventsResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetEventsResponse.html new file mode 100644 index 000000000..ef3fb3daf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetEventsResponse.html @@ -0,0 +1,2 @@ +GetEventsResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetEventsResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetEventsResponse: GetEventsQuery["events"]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The response containing the events from the GetEventsQuery.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetFungibleAssetActivitiesResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetFungibleAssetActivitiesResponse.html new file mode 100644 index 000000000..cdadbf449 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetFungibleAssetActivitiesResponse.html @@ -0,0 +1,2 @@ +GetFungibleAssetActivitiesResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetFungibleAssetActivitiesResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The response containing the activities related to fungible assets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetFungibleAssetMetadataResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetFungibleAssetMetadataResponse.html new file mode 100644 index 000000000..709fbcd79 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetFungibleAssetMetadataResponse.html @@ -0,0 +1,2 @@ +GetFungibleAssetMetadataResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetFungibleAssetMetadataResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GetFungibleAssetMetadataResponse: GetFungibleAssetMetadataQuery["fungible_asset_metadata"]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The response containing metadata for a fungible asset.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetNumberOfDelegatorsResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetNumberOfDelegatorsResponse.html new file mode 100644 index 000000000..3a72f03b6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetNumberOfDelegatorsResponse.html @@ -0,0 +1,2 @@ +GetNumberOfDelegatorsResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetNumberOfDelegatorsResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The number of active delegators per pool in response to a query.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetObjectDataQueryResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetObjectDataQueryResponse.html new file mode 100644 index 000000000..a2d5006c7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetObjectDataQueryResponse.html @@ -0,0 +1,7 @@ +GetObjectDataQueryResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetObjectDataQueryResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      GetObjectDataQueryResponse: GetObjectDataQuery["current_objects"]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CUSTOM RESPONSE TYPES FOR THE END USER

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To provide a good dev exp, we build custom types derived from the +query types to be the response type the end developer/user will +work with.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      These types are used as the return type when calling a sdk api function +that calls the function that queries the server (usually under the /api/ folder)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetOwnedTokensResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetOwnedTokensResponse.html new file mode 100644 index 000000000..b3e9c0ada --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetOwnedTokensResponse.html @@ -0,0 +1,2 @@ +GetOwnedTokensResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetOwnedTokensResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The response containing the current token ownerships for a user.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetProcessorStatusResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetProcessorStatusResponse.html new file mode 100644 index 000000000..78e59d794 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetProcessorStatusResponse.html @@ -0,0 +1,2 @@ +GetProcessorStatusResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetProcessorStatusResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GetProcessorStatusResponse: GetProcessorStatusQuery["processor_status"]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The status of the processor as returned by the GetProcessorStatusQuery.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetRequestOptions.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetRequestOptions.html new file mode 100644 index 000000000..cdb5716e0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetRequestOptions.html @@ -0,0 +1,18 @@ +GetRequestOptions | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetRequestOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Options for making a GET request, including configuration for the API client.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type GetRequestOptions = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                acceptType?: MimeType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                aptosConfig: AptosConfig;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                contentType?: MimeType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                originMethod: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                overrides?: ClientConfig;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                params?: Record<string, string | AnyNumber | boolean | undefined>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                path: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type: AptosApiType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Implementation - Client

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            acceptType?: MimeType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The accepted content type of the response of the API

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            aptosConfig: AptosConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The config for the API client

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            contentType?: MimeType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The content type of the request body

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            originMethod: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The name of the API method

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            overrides?: ClientConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Specific client overrides for this request to override aptosConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            params?: Record<string, string | AnyNumber | boolean | undefined>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The query parameters for the request

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            path: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The URL path to the API method

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The type of API endpoint to call e.g. fullnode, indexer, etc

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetTableItemsDataResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetTableItemsDataResponse.html new file mode 100644 index 000000000..a3a5e23f0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetTableItemsDataResponse.html @@ -0,0 +1,2 @@ +GetTableItemsDataResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetTableItemsDataResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetTableItemsDataResponse: GetTableItemsDataQuery["table_items"]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The response structure for retrieving items from a table.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetTableItemsMetadataResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetTableItemsMetadataResponse.html new file mode 100644 index 000000000..67bc07f1b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetTableItemsMetadataResponse.html @@ -0,0 +1,2 @@ +GetTableItemsMetadataResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetTableItemsMetadataResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GetTableItemsMetadataResponse: GetTableItemsMetadataQuery["table_metadatas"]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The metadata for table items retrieved from a query.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetTokenActivityResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetTokenActivityResponse.html new file mode 100644 index 000000000..e3049def9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetTokenActivityResponse.html @@ -0,0 +1,2 @@ +GetTokenActivityResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetTokenActivityResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GetTokenActivityResponse: GetTokenActivityQuery["token_activities_v2"]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The response structure for retrieving token activity data.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GetTokenDataResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetTokenDataResponse.html new file mode 100644 index 000000000..396f2cd1d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GetTokenDataResponse.html @@ -0,0 +1,2 @@ +GetTokenDataResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetTokenDataResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The response structure for retrieving token data, containing the current token information.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/GraphqlQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/GraphqlQuery.html new file mode 100644 index 000000000..0f9c07d9e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/GraphqlQuery.html @@ -0,0 +1,4 @@ +GraphqlQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GraphqlQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The GraphQL query to pass into the queryIndexer function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type GraphqlQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          query: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          variables?: {};
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      query: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      variables?: {}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/HexInput.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/HexInput.html new file mode 100644 index 000000000..c3c11283c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/HexInput.html @@ -0,0 +1,2 @@ +HexInput | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias HexInput

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HexInput: string | Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hexadecimal data input for functions, supporting both string and Uint8Array formats.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/IndexerConfig.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/IndexerConfig.html new file mode 100644 index 000000000..7ca8eeaff --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/IndexerConfig.html @@ -0,0 +1,2 @@ +IndexerConfig | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias IndexerConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          IndexerConfig: ClientHeadersType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An Indexer configuration object for sending requests with additional headers.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputEntryFunctionData.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputEntryFunctionData.html new file mode 100644 index 000000000..4fee6beb3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputEntryFunctionData.html @@ -0,0 +1,6 @@ +InputEntryFunctionData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias InputEntryFunctionData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The data needed to generate an Entry Function payload.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type InputEntryFunctionData = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                abi?: EntryFunctionABI;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                function: MoveFunctionId;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                functionArguments?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    EntryFunctionArgumentTypes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | SimpleEntryFunctionArgumentTypes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                )[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                typeArguments?: TypeArgument[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            function: MoveFunctionId
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            functionArguments?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                EntryFunctionArgumentTypes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | SimpleEntryFunctionArgumentTypes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            )[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            typeArguments?: TypeArgument[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputEntryFunctionDataWithABI.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputEntryFunctionDataWithABI.html new file mode 100644 index 000000000..22e2124ba --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputEntryFunctionDataWithABI.html @@ -0,0 +1,2 @@ +InputEntryFunctionDataWithABI | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias InputEntryFunctionDataWithABI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputEntryFunctionDataWithABI: Omit<InputEntryFunctionData, "abi"> & {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  abi: EntryFunctionABI;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The input data for an entry function, including its associated ABI.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputEntryFunctionDataWithRemoteABI.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputEntryFunctionDataWithRemoteABI.html new file mode 100644 index 000000000..fdfee230e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputEntryFunctionDataWithRemoteABI.html @@ -0,0 +1,2 @@ +InputEntryFunctionDataWithRemoteABI | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias InputEntryFunctionDataWithRemoteABI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                InputEntryFunctionDataWithRemoteABI: InputEntryFunctionData & {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    aptosConfig: AptosConfig;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Combines input function data with Aptos configuration for remote ABI interactions.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateOrderlessTransactionOptions.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateOrderlessTransactionOptions.html new file mode 100644 index 000000000..442399013 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateOrderlessTransactionOptions.html @@ -0,0 +1,7 @@ +InputGenerateOrderlessTransactionOptions | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias InputGenerateOrderlessTransactionOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Input options for generating a transaction using the orderless method, which does not require an account sequence number.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type InputGenerateOrderlessTransactionOptions = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      accountSequenceNumber?: undefined;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      expireTimestamp?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      gasUnitPrice?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      maxGasAmount?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      replayProtectionNonce: AnyNumber;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  accountSequenceNumber?: undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  expireTimestamp?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  gasUnitPrice?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  maxGasAmount?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  replayProtectionNonce: AnyNumber
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateRawTransactionArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateRawTransactionArgs.html new file mode 100644 index 000000000..1151d101e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateRawTransactionArgs.html @@ -0,0 +1,2 @@ +InputGenerateRawTransactionArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias InputGenerateRawTransactionArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A unified type for generating various transaction types.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateSequenceNumberTransactionOptions.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateSequenceNumberTransactionOptions.html new file mode 100644 index 000000000..395494392 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateSequenceNumberTransactionOptions.html @@ -0,0 +1,7 @@ +InputGenerateSequenceNumberTransactionOptions | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias InputGenerateSequenceNumberTransactionOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Input options for generating a transaction that requires an account sequence number, which is the default method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type InputGenerateSequenceNumberTransactionOptions = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          accountSequenceNumber?: AnyNumber;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          expireTimestamp?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          gasUnitPrice?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          maxGasAmount?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          replayProtectionNonce?: undefined;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      accountSequenceNumber?: AnyNumber
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      expireTimestamp?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      gasUnitPrice?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      maxGasAmount?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      replayProtectionNonce?: undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateTransactionData.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateTransactionData.html new file mode 100644 index 000000000..9ca8c8a1c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateTransactionData.html @@ -0,0 +1,2 @@ +InputGenerateTransactionData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias InputGenerateTransactionData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Unified type holding user data input interfaces for generating various transaction types.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateTransactionOptions.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateTransactionOptions.html new file mode 100644 index 000000000..ef696138d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateTransactionOptions.html @@ -0,0 +1,2 @@ +InputGenerateTransactionOptions | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias InputGenerateTransactionOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional options to set when generating a transaction, including a maximum gas amount.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateTransactionPayloadData.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateTransactionPayloadData.html new file mode 100644 index 000000000..d7cb25ad8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateTransactionPayloadData.html @@ -0,0 +1,2 @@ +InputGenerateTransactionPayloadData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias InputGenerateTransactionPayloadData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            InputGenerateTransactionPayloadData:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | InputEntryFunctionData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | InputScriptData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | InputMultiSigData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The data needed to generate a transaction payload for Entry Function, Script, or Multi Sig types.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateTransactionPayloadDataWithABI.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateTransactionPayloadDataWithABI.html new file mode 100644 index 000000000..f24facf0f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateTransactionPayloadDataWithABI.html @@ -0,0 +1,2 @@ +InputGenerateTransactionPayloadDataWithABI | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias InputGenerateTransactionPayloadDataWithABI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InputGenerateTransactionPayloadDataWithABI:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  | InputEntryFunctionDataWithABI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  | InputMultiSigDataWithABI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The payload for generating a transaction, which can be either an entry function or a multi-signature transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateTransactionPayloadDataWithRemoteABI.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateTransactionPayloadDataWithRemoteABI.html new file mode 100644 index 000000000..c62b20a9f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputGenerateTransactionPayloadDataWithRemoteABI.html @@ -0,0 +1,3 @@ +InputGenerateTransactionPayloadDataWithRemoteABI | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias InputGenerateTransactionPayloadDataWithRemoteABI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                InputGenerateTransactionPayloadDataWithRemoteABI:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | InputScriptData
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | InputEntryFunctionDataWithRemoteABI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | InputMultiSigDataWithRemoteABI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The payload for generating a transaction, which can be either script data, entry function data with remote ABI, or +multi-signature data.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputMultiSigData.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputMultiSigData.html new file mode 100644 index 000000000..7c0aac699 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputMultiSigData.html @@ -0,0 +1,2 @@ +InputMultiSigData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias InputMultiSigData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  InputMultiSigData: { multisigAddress: AccountAddressInput } & InputEntryFunctionData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The data needed to generate a Multi Sig payload

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputMultiSigDataWithABI.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputMultiSigDataWithABI.html new file mode 100644 index 000000000..39cd895b6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputMultiSigDataWithABI.html @@ -0,0 +1,2 @@ +InputMultiSigDataWithABI | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias InputMultiSigDataWithABI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    InputMultiSigDataWithABI: { multisigAddress: AccountAddressInput } & InputEntryFunctionDataWithABI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The data needed to generate a Multi Sig payload, including the multisig address.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputMultiSigDataWithRemoteABI.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputMultiSigDataWithRemoteABI.html new file mode 100644 index 000000000..f97a21a4a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputMultiSigDataWithRemoteABI.html @@ -0,0 +1,2 @@ +InputMultiSigDataWithRemoteABI | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias InputMultiSigDataWithRemoteABI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      InputMultiSigDataWithRemoteABI: { multisigAddress: AccountAddressInput } & InputEntryFunctionDataWithRemoteABI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The data needed to generate a Multi Sig payload, including the multisig address.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputScriptData.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputScriptData.html new file mode 100644 index 000000000..b5c05eb17 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputScriptData.html @@ -0,0 +1,5 @@ +InputScriptData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias InputScriptData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The data needed to generate a Script payload.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type InputScriptData = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            bytecode: HexInput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            functionArguments: ScriptFunctionArgumentTypes[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            typeArguments?: TypeArgument[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        bytecode: HexInput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        functionArguments: ScriptFunctionArgumentTypes[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        typeArguments?: TypeArgument[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputSimulateTransactionData.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputSimulateTransactionData.html new file mode 100644 index 000000000..8212de719 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputSimulateTransactionData.html @@ -0,0 +1,16 @@ +InputSimulateTransactionData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias InputSimulateTransactionData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The data required to simulate a transaction, typically generated by generateTransaction().

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type InputSimulateTransactionData = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              feePayerPublicKey?: PublicKey;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              options?: InputSimulateTransactionOptions;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              secondarySignersPublicKeys?: (PublicKey | undefined)[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              signerPublicKey?: PublicKey;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              transaction: AnyRawTransaction;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Implementation - Transactions +This is optional and can be undefined to skip the public/auth key check during the transaction simulation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Implementation - Transactions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          feePayerPublicKey?: PublicKey

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For a fee payer transaction (aka Sponsored Transaction)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          secondarySignersPublicKeys?: (PublicKey | undefined)[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For a fee payer or multi-agent transaction that requires additional signers in

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transaction: AnyRawTransaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The transaction to simulate, probably generated by generateTransaction()

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Implementation - Transactions +This is optional and can be undefined to skip the public/auth key check during the transaction simulation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          signerPublicKey?: PublicKey

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For a single signer transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputSimulateTransactionOptions.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputSimulateTransactionOptions.html new file mode 100644 index 000000000..ee42dd467 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputSimulateTransactionOptions.html @@ -0,0 +1,5 @@ +InputSimulateTransactionOptions | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias InputSimulateTransactionOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Options for simulating a transaction input, including whether to estimate the gas unit price.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type InputSimulateTransactionOptions = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                estimateGasUnitPrice?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                estimateMaxGasAmount?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                estimatePrioritizedGasUnitPrice?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            estimateGasUnitPrice?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            estimateMaxGasAmount?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            estimatePrioritizedGasUnitPrice?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputSubmitTransactionData.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputSubmitTransactionData.html new file mode 100644 index 000000000..ab347688b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputSubmitTransactionData.html @@ -0,0 +1,12 @@ +InputSubmitTransactionData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias InputSubmitTransactionData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Holds user data input for submitting a transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The raw transaction data.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The authenticator for the sender's account.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional authenticator for the fee payer's account.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional array of authenticators for +additional signers.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Additional parameters that will be passed to the transaction +submitter plugin if configured.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              You can set this to override the configured transaction +submitter (if any). Conversely you can set this to null to ignore any configured +transaction submitter.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputViewFunctionData.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputViewFunctionData.html new file mode 100644 index 000000000..9d33049aa --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputViewFunctionData.html @@ -0,0 +1,6 @@ +InputViewFunctionData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias InputViewFunctionData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The data needed to generate a View Function payload.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type InputViewFunctionData = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    abi?: ViewFunctionABI;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    function: MoveFunctionId;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    functionArguments?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        EntryFunctionArgumentTypes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | SimpleEntryFunctionArgumentTypes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    )[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    typeArguments?: TypeArgument[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                function: MoveFunctionId
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                functionArguments?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    EntryFunctionArgumentTypes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | SimpleEntryFunctionArgumentTypes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                )[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                typeArguments?: TypeArgument[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputViewFunctionDataWithABI.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputViewFunctionDataWithABI.html new file mode 100644 index 000000000..418ec299c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputViewFunctionDataWithABI.html @@ -0,0 +1,2 @@ +InputViewFunctionDataWithABI | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias InputViewFunctionDataWithABI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  InputViewFunctionDataWithABI: InputViewFunctionData & { abi: ViewFunctionABI }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Data needed to generate a view function, including the fetched ABI.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputViewFunctionDataWithRemoteABI.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputViewFunctionDataWithRemoteABI.html new file mode 100644 index 000000000..d26bb104f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputViewFunctionDataWithRemoteABI.html @@ -0,0 +1,2 @@ +InputViewFunctionDataWithRemoteABI | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias InputViewFunctionDataWithRemoteABI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    InputViewFunctionDataWithRemoteABI: InputViewFunctionData & {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        aptosConfig: AptosConfig;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Data required to create a view function payload and retrieve the remote ABI, including Aptos configuration.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/InputViewFunctionJsonData.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputViewFunctionJsonData.html new file mode 100644 index 000000000..e4b143bf2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/InputViewFunctionJsonData.html @@ -0,0 +1,5 @@ +InputViewFunctionJsonData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias InputViewFunctionJsonData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The data needed to generate a View Function payload in JSON format.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type InputViewFunctionJsonData = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          function: MoveFunctionId;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          functionArguments?: MoveValue[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          typeArguments?: MoveStructId[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      function: MoveFunctionId
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      functionArguments?: MoveValue[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      typeArguments?: MoveStructId[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/Int128.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/Int128.html new file mode 100644 index 000000000..ad1c999f4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/Int128.html @@ -0,0 +1,2 @@ +Int128 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias Int128

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Int128: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A signed 128-bit integer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/Int16.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/Int16.html new file mode 100644 index 000000000..19e078e35 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/Int16.html @@ -0,0 +1,2 @@ +Int16 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias Int16

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Int16: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A signed 16-bit integer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/Int256.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/Int256.html new file mode 100644 index 000000000..42d209e20 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/Int256.html @@ -0,0 +1,2 @@ +Int256 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias Int256

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Int256: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A signed 256-bit integer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/Int32.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/Int32.html new file mode 100644 index 000000000..b8090a729 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/Int32.html @@ -0,0 +1,2 @@ +Int32 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias Int32

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Int32: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A signed 32-bit integer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/Int64.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/Int64.html new file mode 100644 index 000000000..14b95c9b9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/Int64.html @@ -0,0 +1,2 @@ +Int64 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias Int64

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Int64: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A signed 64-bit integer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/Int8.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/Int8.html new file mode 100644 index 000000000..21835eb83 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/Int8.html @@ -0,0 +1,2 @@ +Int8 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias Int8

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Int8: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A signed 8-bit integer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/LedgerInfo.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/LedgerInfo.html new file mode 100644 index 000000000..df790ccec --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/LedgerInfo.html @@ -0,0 +1,14 @@ +LedgerInfo | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias LedgerInfo

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Information about the current blockchain ledger, including its chain ID.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type LedgerInfo = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        block_height: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        chain_id: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        epoch: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        git_hash?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ledger_timestamp: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ledger_version: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        node_role: RoleType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        oldest_block_height: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        oldest_ledger_version: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    block_height: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    chain_id: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Chain ID of the current chain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    epoch: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    git_hash?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Git hash of the build of the API endpoint. Can be used to determine the exact +software version used by the API endpoint.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ledger_timestamp: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ledger_version: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    node_role: RoleType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    oldest_block_height: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    oldest_ledger_version: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/LedgerVersionArg.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/LedgerVersionArg.html new file mode 100644 index 000000000..38988186f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/LedgerVersionArg.html @@ -0,0 +1,3 @@ +LedgerVersionArg | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias LedgerVersionArg

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The ledger version of transactions, defaulting to the latest version if not specified.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type LedgerVersionArg = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ledgerVersion?: AnyNumber;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ledgerVersion?: AnyNumber
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveAddressType.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveAddressType.html new file mode 100644 index 000000000..002115560 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveAddressType.html @@ -0,0 +1,2 @@ +MoveAddressType | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias MoveAddressType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MoveAddressType: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A string representing a Move address.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveFunction.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveFunction.html new file mode 100644 index 000000000..7ec5be2f6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveFunction.html @@ -0,0 +1,14 @@ +MoveFunction | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias MoveFunction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Move function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type MoveFunction = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              generic_type_params: MoveFunctionGenericTypeParam[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              is_entry: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              is_view: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              params: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              return: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              visibility: MoveFunctionVisibility;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          generic_type_params: MoveFunctionGenericTypeParam[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Generic type params associated with the Move function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          is_entry

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          is_entry: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whether the function can be called as an entry function directly in a transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          is_view: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whether the function is a view function or not

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          params: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Parameters associated with the move function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          return: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return type of the function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveFunctionGenericTypeParam.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveFunctionGenericTypeParam.html new file mode 100644 index 000000000..104480b5b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveFunctionGenericTypeParam.html @@ -0,0 +1,3 @@ +MoveFunctionGenericTypeParam | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias MoveFunctionGenericTypeParam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Move abilities associated with the generic type parameter of a function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type MoveFunctionGenericTypeParam = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                constraints: MoveAbility[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            constraints: MoveAbility[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveFunctionId.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveFunctionId.html new file mode 100644 index 000000000..4a720d93a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveFunctionId.html @@ -0,0 +1,2 @@ +MoveFunctionId | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias MoveFunctionId

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveFunctionId: MoveStructId

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The move function containing its name. Same as MoveStructId since it reads weird to take a StructId for a Function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveInt128Type.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveInt128Type.html new file mode 100644 index 000000000..ca5aad344 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveInt128Type.html @@ -0,0 +1,2 @@ +MoveInt128Type | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias MoveInt128Type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MoveInt128Type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A string representing a 128-bit signed integer in the Move programming language.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveInt16Type.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveInt16Type.html new file mode 100644 index 000000000..a31ed84fb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveInt16Type.html @@ -0,0 +1,2 @@ +MoveInt16Type | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias MoveInt16Type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MoveInt16Type: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A 16-bit signed integer used in the Move programming language.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveInt256Type.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveInt256Type.html new file mode 100644 index 000000000..ed95470a0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveInt256Type.html @@ -0,0 +1,2 @@ +MoveInt256Type | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias MoveInt256Type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MoveInt256Type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A string representation of a 256-bit signed integer used in Move programming.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveInt32Type.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveInt32Type.html new file mode 100644 index 000000000..44226ecb9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveInt32Type.html @@ -0,0 +1,2 @@ +MoveInt32Type | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias MoveInt32Type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MoveInt32Type: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A 32-bit signed integer type used in Move programming.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveInt64Type.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveInt64Type.html new file mode 100644 index 000000000..01b9302bc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveInt64Type.html @@ -0,0 +1,2 @@ +MoveInt64Type | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias MoveInt64Type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MoveInt64Type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A string representation of a 64-bit signed integer used in Move programming.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveInt8Type.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveInt8Type.html new file mode 100644 index 000000000..77b0a9bb5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveInt8Type.html @@ -0,0 +1,2 @@ +MoveInt8Type | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias MoveInt8Type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MoveInt8Type: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A number representing a Move int8 type.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveModule.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveModule.html new file mode 100644 index 000000000..50c143e26 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveModule.html @@ -0,0 +1,10 @@ +MoveModule | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias MoveModule

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A Move module

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type MoveModule = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                exposed_functions: MoveFunction[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                friends: MoveModuleId[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                structs: MoveStruct[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            address: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            exposed_functions: MoveFunction[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Public functions of the module

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            friends: MoveModuleId[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Friends of the module

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            structs: MoveStruct[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Structs of the module

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveModuleBytecode.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveModuleBytecode.html new file mode 100644 index 000000000..2bafc552d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveModuleBytecode.html @@ -0,0 +1,4 @@ +MoveModuleBytecode | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias MoveModuleBytecode

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A Move module containing an address.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type MoveModuleBytecode = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  abi?: MoveModule;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  bytecode: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              bytecode: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveModuleId.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveModuleId.html new file mode 100644 index 000000000..f8629e22f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveModuleId.html @@ -0,0 +1,3 @@ +MoveModuleId | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias MoveModuleId

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MoveModuleId: `${string}::${string}`

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A string representation of a Move module, formatted as module_name::function_name. +Module names are case-sensitive.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveObjectType.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveObjectType.html new file mode 100644 index 000000000..dd4406a56 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveObjectType.html @@ -0,0 +1,2 @@ +MoveObjectType | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias MoveObjectType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MoveObjectType: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The type for identifying objects to be moved within the system.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveOptionType.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveOptionType.html new file mode 100644 index 000000000..3b5356346 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveOptionType.html @@ -0,0 +1,2 @@ +MoveOptionType | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias MoveOptionType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MoveOptionType: MoveType | null | undefined

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The type for move options, which can be a MoveType, null, or undefined.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveResource.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveResource.html new file mode 100644 index 000000000..349863a06 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveResource.html @@ -0,0 +1,3 @@ +MoveResource | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias MoveResource<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type MoveResource<T = {}> = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          data: T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: MoveStructId;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • T = {}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      data: T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveScriptBytecode.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveScriptBytecode.html new file mode 100644 index 000000000..c516bce21 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveScriptBytecode.html @@ -0,0 +1,4 @@ +MoveScriptBytecode | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias MoveScriptBytecode

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The bytecode for a Move script.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type MoveScriptBytecode = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            abi?: MoveFunction;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            bytecode: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        bytecode: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveStruct.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveStruct.html new file mode 100644 index 000000000..519d87581 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveStruct.html @@ -0,0 +1,18 @@ +MoveStruct | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias MoveStruct

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A move struct

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type MoveStruct = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              abilities: MoveAbility[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              fields: MoveStructField[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              generic_type_params: MoveFunctionGenericTypeParam[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              is_enum: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              is_event: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              is_native: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          abilities: MoveAbility[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Abilities associated with the struct

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          fields: MoveStructField[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Fields associated with the struct

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          generic_type_params: MoveFunctionGenericTypeParam[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Generic types associated with the struct

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          is_enum: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          True if the struct is an enum (e.g. enum MyEnum { A, B, C }), false if it is a +regular struct (e.g. struct MyStruct { a: u8, b: u8 }).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          is_event: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whether the struct is a module event (aka v2 event). This will be false for v1 +events because the value is derived from the #[event] attribute on the struct in +the Move source code. This attribute is only relevant for v2 events.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          is_native: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whether the struct is a native struct of Move

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveStructField.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveStructField.html new file mode 100644 index 000000000..5c2250f4e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveStructField.html @@ -0,0 +1,4 @@ +MoveStructField | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias MoveStructField

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A field in a Move struct, identified by its name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type MoveStructField = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveStructId.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveStructId.html new file mode 100644 index 000000000..2d787621a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveStructId.html @@ -0,0 +1,2 @@ +MoveStructId | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias MoveStructId

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveStructId: `${string}::${string}::${string}`

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A structure representing a move with a name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveStructType.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveStructType.html new file mode 100644 index 000000000..160b75dd4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveStructType.html @@ -0,0 +1 @@ +MoveStructType | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias MoveStructType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MoveStructType: {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveType.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveType.html new file mode 100644 index 000000000..d501cd1c6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveType.html @@ -0,0 +1,3 @@ +MoveType | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias MoveType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MoveType:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | MoveUint8Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | MoveUint16Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | MoveUint32Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | MoveUint64Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | MoveUint128Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | MoveUint256Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | MoveInt8Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | MoveInt16Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | MoveInt32Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | MoveInt64Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | MoveInt128Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | MoveInt256Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | MoveAddressType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | MoveObjectType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | MoveStructType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | MoveType[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A union type that encompasses various data types used in Move, including primitive types, address types, object types, and +arrays of MoveType.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveUint128Type.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveUint128Type.html new file mode 100644 index 000000000..2f3a67f60 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveUint128Type.html @@ -0,0 +1,2 @@ +MoveUint128Type | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias MoveUint128Type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MoveUint128Type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A string representing a 128-bit unsigned integer in the Move programming language.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveUint16Type.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveUint16Type.html new file mode 100644 index 000000000..76ebe590a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveUint16Type.html @@ -0,0 +1,2 @@ +MoveUint16Type | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias MoveUint16Type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MoveUint16Type: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A 16-bit unsigned integer used in the Move programming language.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveUint256Type.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveUint256Type.html new file mode 100644 index 000000000..a7a9cec57 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveUint256Type.html @@ -0,0 +1,2 @@ +MoveUint256Type | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias MoveUint256Type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MoveUint256Type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A string representation of a 256-bit unsigned integer used in Move programming.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveUint32Type.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveUint32Type.html new file mode 100644 index 000000000..27fe4c046 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveUint32Type.html @@ -0,0 +1,2 @@ +MoveUint32Type | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias MoveUint32Type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MoveUint32Type: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A 32-bit unsigned integer type used in Move programming.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveUint64Type.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveUint64Type.html new file mode 100644 index 000000000..542f7fc91 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveUint64Type.html @@ -0,0 +1,2 @@ +MoveUint64Type | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias MoveUint64Type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MoveUint64Type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A string representation of a 64-bit unsigned integer used in Move programming.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveUint8Type.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveUint8Type.html new file mode 100644 index 000000000..6b38cd255 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveUint8Type.html @@ -0,0 +1,2 @@ +MoveUint8Type | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias MoveUint8Type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MoveUint8Type: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A number representing a Move uint8 type.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveValue.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveValue.html new file mode 100644 index 000000000..459c932e1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MoveValue.html @@ -0,0 +1,14 @@ +MoveValue | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias MoveValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MoveValue:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | MoveUint8Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | MoveUint16Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | MoveUint32Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | MoveUint64Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | MoveUint128Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | MoveUint256Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | MoveInt8Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | MoveInt16Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | MoveInt32Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | MoveInt64Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | MoveInt128Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | MoveInt256Type
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | MoveAddressType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | MoveObjectType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | MoveStructId
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | MoveOptionType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | MoveValue[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Possible Move values acceptable by move functions (entry, view)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Map of a Move value to the corresponding TypeScript value

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bool -> boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  u8, u16, u32 -> number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  u64, u128, u256 -> string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  i8, i16, i32 -> number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  i64, i128, i256 -> string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  String -> string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Address -> 0x${string}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Struct - 0x${string}::${string}::${string}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Object -> 0x${string}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Vector -> Array<MoveValue>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Option -> MoveValue | null | undefined

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/MultisigPayloadResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/MultisigPayloadResponse.html new file mode 100644 index 000000000..49785e47a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/MultisigPayloadResponse.html @@ -0,0 +1,5 @@ +MultisigPayloadResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias MultisigPayloadResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The response payload for a multisig transaction, containing the type of the transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type MultisigPayloadResponse = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        multisig_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        transaction_payload?: EntryFunctionPayloadResponse;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    multisig_address: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    transaction_payload?: EntryFunctionPayloadResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/OrderBy.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/OrderBy.html new file mode 100644 index 000000000..c40d6a584 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/OrderBy.html @@ -0,0 +1,3 @@ +OrderBy | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias OrderBy<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      OrderBy: { [K in keyof T]?: OrderByValue }[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A generic type that being passed by each function and holds an +array of properties we can sort the query by

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/OrderByValue.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/OrderByValue.html new file mode 100644 index 000000000..f98129439 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/OrderByValue.html @@ -0,0 +1,2 @@ +OrderByValue | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias OrderByValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        OrderByValue:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | "asc"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | "asc_nulls_first"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | "asc_nulls_last"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | "desc"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | "desc_nulls_first"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | "desc_nulls_last"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Specifies the order direction for sorting, including options for handling null values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/ParsingResult.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/ParsingResult.html new file mode 100644 index 000000000..9232408e3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/ParsingResult.html @@ -0,0 +1,9 @@ +ParsingResult | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias ParsingResult<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whereas ParsingError is thrown when parsing fails, e.g. in a fromString function, +this type is returned from "defensive" functions like isValid.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type ParsingResult<T> = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              invalidReason?: T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              invalidReasonMessage?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              valid: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Implementation - Serialization

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Implementation - Serialization

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          invalidReason?: T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If valid is false, this will be a code explaining why parsing failed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          invalidReasonMessage?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If valid is false, this will be a string explaining why parsing failed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          valid: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          True if valid, false otherwise.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PendingTransactionResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PendingTransactionResponse.html new file mode 100644 index 000000000..d361c9300 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PendingTransactionResponse.html @@ -0,0 +1,11 @@ +PendingTransactionResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias PendingTransactionResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The response for a pending transaction, indicating that the transaction is still being processed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type PendingTransactionResponse = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                expiration_timestamp_secs: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                gas_unit_price: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                max_gas_amount: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                payload: TransactionPayloadResponse;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                sender: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                sequence_number: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                signature?: TransactionSignature;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type: Pending;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            expiration_timestamp_secs: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            gas_unit_price: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            max_gas_amount: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            sender: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            sequence_number: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type: Pending
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PluginConfig.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PluginConfig.html new file mode 100644 index 000000000..fc30e37fc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PluginConfig.html @@ -0,0 +1,7 @@ +PluginConfig | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias PluginConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Config for plugins. This can be used to override certain client behavior.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type PluginConfig = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  IGNORE_TRANSACTION_SUBMITTER?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TRANSACTION_SUBMITTER?: TransactionSubmitter;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              IGNORE_TRANSACTION_SUBMITTER?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If true, we won't use the TRANSACTION_SUBMITTER if set.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TRANSACTION_SUBMITTER?: TransactionSubmitter

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If given, this will be used for submitting transactions instead of the default +implementation (which submits transactions directly via a node).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PluginSettings.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PluginSettings.html new file mode 100644 index 000000000..6c7472dee --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PluginSettings.html @@ -0,0 +1 @@ +PluginSettings | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias PluginSettings

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PluginSettings: Omit<PluginConfig, "IGNORE_TRANSACTION_SUBMITTER">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PostAptosRequestOptions.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PostAptosRequestOptions.html new file mode 100644 index 000000000..d4315df9f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PostAptosRequestOptions.html @@ -0,0 +1,2 @@ +PostAptosRequestOptions | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias PostAptosRequestOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PostAptosRequestOptions: Omit<PostRequestOptions, "type">

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Options for posting a request to Aptos, excluding the type field.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PostRequestOptions.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PostRequestOptions.html new file mode 100644 index 000000000..532c755b9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PostRequestOptions.html @@ -0,0 +1,20 @@ +PostRequestOptions | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias PostRequestOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Options for making a POST request, including the API client configuration.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type PostRequestOptions = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        acceptType?: MimeType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        aptosConfig: AptosConfig;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        body?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        contentType?: MimeType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        originMethod: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        overrides?: ClientConfig;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        params?: Record<string, string | AnyNumber | boolean | undefined>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        path: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type: AptosApiType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Implementation - Client

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    acceptType?: MimeType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The accepted content type of the response of the API

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    aptosConfig: AptosConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The config for the API client

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    body?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The body of the request, should match the content type of the request

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    contentType?: MimeType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The content type of the request body

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    originMethod: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The name of the API method

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    overrides?: ClientConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Specific client overrides for this request to override aptosConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    params?: Record<string, string | AnyNumber | boolean | undefined>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The query parameters for the request

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    path: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The URL path to the API method

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The type of API endpoint to call e.g. fullnode, indexer, etc

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.AbstractedAccountConstructorArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.AbstractedAccountConstructorArgs.html new file mode 100644 index 000000000..9142631c2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.AbstractedAccountConstructorArgs.html @@ -0,0 +1,12 @@ +AbstractedAccountConstructorArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias AbstractedAccountConstructorArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type AbstractedAccountConstructorArgs = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          accountAddress: AccountAddress;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          authenticationFunction: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          signer: (digest: HexInput) => Uint8Array;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      accountAddress: AccountAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The account address of the account.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      authenticationFunction: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The authentication function that will be used to verify the signature.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      const authenticationFunction = `${accountAddress}::permissioned_delegation::authenticate`;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      signer: (digest: HexInput) => Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The signer function signs transactions and returns the authenticator bytes in the AbstractionAuthData.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • (digest: HexInput): Uint8Array
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • digest: HexInput

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The SHA256 hash of the transaction signing message

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The authenticator bytes that can be used to verify the signature.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.AccountInfo.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.AccountInfo.html new file mode 100644 index 000000000..d767cf1e2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.AccountInfo.html @@ -0,0 +1,4 @@ +AccountInfo | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias AccountInfo

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type AccountInfo = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            accountAddress: AccountAddress;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            lastTransactionVersion: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            publicKey: BaseAccountPublicKey;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        accountAddress: AccountAddress
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        lastTransactionVersion: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.AffinePoint.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.AffinePoint.html new file mode 100644 index 000000000..e2dae499c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.AffinePoint.html @@ -0,0 +1 @@ +AffinePoint | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias AffinePoint<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AffinePoint: { x: T; y: T } & { Z?: never }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.AptosApiErrorOpts.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.AptosApiErrorOpts.html new file mode 100644 index 000000000..6e001752e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.AptosApiErrorOpts.html @@ -0,0 +1,5 @@ +AptosApiErrorOpts | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias AptosApiErrorOpts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Options for handling errors in the Aptos API.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type AptosApiErrorOpts = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                apiType: AptosApiType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                aptosRequest: AptosRequest;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                aptosResponse: AptosResponse<any, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            apiType: AptosApiType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            aptosRequest: AptosRequest
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            aptosResponse: AptosResponse<any, any>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.ArrayBufferLike.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.ArrayBufferLike.html new file mode 100644 index 000000000..d8824986e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.ArrayBufferLike.html @@ -0,0 +1 @@ +ArrayBufferLike | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias ArrayBufferLike

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ArrayBufferLike: ArrayBufferTypes[keyof ArrayBufferTypes]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.BigintComparisonExp.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.BigintComparisonExp.html new file mode 100644 index 000000000..2cfed4c14 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.BigintComparisonExp.html @@ -0,0 +1,11 @@ +BigintComparisonExp | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias BigintComparisonExp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type BigintComparisonExp = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    _eq?: InputMaybe<Scalars["bigint"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    _gt?: InputMaybe<Scalars["bigint"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    _gte?: InputMaybe<Scalars["bigint"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    _in?: InputMaybe<Scalars["bigint"]["input"][]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    _is_null?: InputMaybe<Scalars["Boolean"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    _lt?: InputMaybe<Scalars["bigint"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    _lte?: InputMaybe<Scalars["bigint"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    _neq?: InputMaybe<Scalars["bigint"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    _nin?: InputMaybe<Scalars["bigint"]["input"][]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _eq?: InputMaybe<Scalars["bigint"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _gt?: InputMaybe<Scalars["bigint"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _gte?: InputMaybe<Scalars["bigint"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _in?: InputMaybe<Scalars["bigint"]["input"][]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _is_null?: InputMaybe<Scalars["Boolean"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _lt?: InputMaybe<Scalars["bigint"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _lte?: InputMaybe<Scalars["bigint"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _neq?: InputMaybe<Scalars["bigint"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _nin?: InputMaybe<Scalars["bigint"]["input"][]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.BooleanComparisonExp.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.BooleanComparisonExp.html new file mode 100644 index 000000000..d814a1734 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.BooleanComparisonExp.html @@ -0,0 +1,11 @@ +BooleanComparisonExp | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias BooleanComparisonExp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type BooleanComparisonExp = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _eq?: InputMaybe<Scalars["Boolean"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _gt?: InputMaybe<Scalars["Boolean"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _gte?: InputMaybe<Scalars["Boolean"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _in?: InputMaybe<Scalars["Boolean"]["input"][]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _is_null?: InputMaybe<Scalars["Boolean"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _lt?: InputMaybe<Scalars["Boolean"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _lte?: InputMaybe<Scalars["Boolean"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _neq?: InputMaybe<Scalars["Boolean"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _nin?: InputMaybe<Scalars["Boolean"]["input"][]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _eq?: InputMaybe<Scalars["Boolean"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _gt?: InputMaybe<Scalars["Boolean"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _gte?: InputMaybe<Scalars["Boolean"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _in?: InputMaybe<Scalars["Boolean"]["input"][]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _is_null?: InputMaybe<Scalars["Boolean"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _lt?: InputMaybe<Scalars["Boolean"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _lte?: InputMaybe<Scalars["Boolean"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _neq?: InputMaybe<Scalars["Boolean"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _nin?: InputMaybe<Scalars["Boolean"]["input"][]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.CurrentAptosNamesAggregateBoolExp.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.CurrentAptosNamesAggregateBoolExp.html new file mode 100644 index 000000000..5b9eb38d4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.CurrentAptosNamesAggregateBoolExp.html @@ -0,0 +1,4 @@ +CurrentAptosNamesAggregateBoolExp | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html new file mode 100644 index 000000000..a7dee25ae --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html @@ -0,0 +1,5 @@ +CurrentAptosNamesAggregateBoolExpBoolAnd | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html new file mode 100644 index 000000000..9e85a6a35 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html @@ -0,0 +1,5 @@ +CurrentAptosNamesAggregateBoolExpBoolOr | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html new file mode 100644 index 000000000..1705b11da --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html @@ -0,0 +1,5 @@ +CurrentAptosNamesAggregateBoolExpCount | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias CurrentAptosNamesAggregateBoolExpCount

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type CurrentAptosNamesAggregateBoolExpCount = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              arguments?: InputMaybe<CurrentAptosNamesSelectColumn[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              distinct?: InputMaybe<Scalars["Boolean"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              filter?: InputMaybe<CurrentAptosNamesBoolExp>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              predicate: IntComparisonExp;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          distinct?: InputMaybe<Scalars["Boolean"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          predicate: IntComparisonExp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.CurrentAptosNamesBoolExp.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.CurrentAptosNamesBoolExp.html new file mode 100644 index 000000000..f6100ea77 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.CurrentAptosNamesBoolExp.html @@ -0,0 +1,19 @@ +CurrentAptosNamesBoolExp | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias CurrentAptosNamesBoolExp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Boolean expression to filter rows from the table "current_aptos_names". All fields are combined with a logical 'AND'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            domain_expiration_timestamp?: InputMaybe<TimestampComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            domain_with_suffix?: InputMaybe<StringComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            expiration_timestamp?: InputMaybe<TimestampComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            last_transaction_version?: InputMaybe<BigintComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            registered_address?: InputMaybe<StringComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            subdomain_expiration_policy?: InputMaybe<BigintComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.CurrentFungibleAssetBalancesBoolExp.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.CurrentFungibleAssetBalancesBoolExp.html new file mode 100644 index 000000000..078bf7b6b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.CurrentFungibleAssetBalancesBoolExp.html @@ -0,0 +1,23 @@ +CurrentFungibleAssetBalancesBoolExp | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias CurrentFungibleAssetBalancesBoolExp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Boolean expression to filter rows from the table "current_fungible_asset_balances". All fields are combined with a logical 'AND'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              last_transaction_timestamp?: InputMaybe<TimestampComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              last_transaction_timestamp_v1?: InputMaybe<TimestampComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              last_transaction_timestamp_v2?: InputMaybe<TimestampComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              last_transaction_version?: InputMaybe<BigintComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              last_transaction_version_v1?: InputMaybe<BigintComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              last_transaction_version_v2?: InputMaybe<BigintComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.DerivableAbstractedAccountArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.DerivableAbstractedAccountArgs.html new file mode 100644 index 000000000..7174adbd6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.DerivableAbstractedAccountArgs.html @@ -0,0 +1,13 @@ +DerivableAbstractedAccountArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias DerivableAbstractedAccountArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type DerivableAbstractedAccountArgs = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    abstractPublicKey: Uint8Array;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    authenticationFunction: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    signer: (digest: HexInput) => Uint8Array;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                abstractPublicKey: Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The abstract public key that is used to identify the account. +Depends on the use cases, most of the time it is the public key of the source wallet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                authenticationFunction: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The authentication function that will be used to verify the signature.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                const authenticationFunction = `${accountAddress}::permissioned_delegation::authenticate`;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                signer: (digest: HexInput) => Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The signer function signs transactions and returns the authenticator bytes in the AbstractionAuthData.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • (digest: HexInput): Uint8Array
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • digest: HexInput

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The SHA256 hash of the transaction signing message

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The authenticator bytes that can be used to verify the signature.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.EventEmitter.ArgumentMap.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.EventEmitter.ArgumentMap.html new file mode 100644 index 000000000..8078e9df3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.EventEmitter.ArgumentMap.html @@ -0,0 +1 @@ +ArgumentMap | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias ArgumentMap<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ArgumentMap: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [K in keyof T]: T[K] extends (...args: any[]) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ? Parameters<T[K]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          : T[K] extends any[] ? T[K] : any[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • T extends object
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.EventEmitter.EventArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.EventEmitter.EventArgs.html new file mode 100644 index 000000000..212d8d5e5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.EventEmitter.EventArgs.html @@ -0,0 +1 @@ +EventArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias EventArgs<T, K>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    EventArgs: Parameters<EventListener<T, K>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.EventEmitter.EventListener.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.EventEmitter.EventListener.html new file mode 100644 index 000000000..ff696dce7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.EventEmitter.EventListener.html @@ -0,0 +1 @@ +EventListener | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias EventListener<T, K>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      EventListener: T extends string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | symbol
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ? (...args: any[]) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          : (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ...args: EventEmitter.ArgumentMap<Exclude<T, string | symbol>>[Extract<
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  K,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  keyof T,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              >],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.EventEmitter.EventNames.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.EventEmitter.EventNames.html new file mode 100644 index 000000000..75d8cd525 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.EventEmitter.EventNames.html @@ -0,0 +1 @@ +EventNames | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias EventNames<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        EventNames: T extends string | symbol ? T : keyof T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.EventEmitter.ValidEventTypes.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.EventEmitter.ValidEventTypes.html new file mode 100644 index 000000000..c8cd1eb1b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.EventEmitter.ValidEventTypes.html @@ -0,0 +1,5 @@ +ValidEventTypes | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias ValidEventTypes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ValidEventTypes: string | symbol | object

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          object should be in either of the following forms:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface EventTypes {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          'event-with-parameters': any[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          'event-with-example-handler': (...args: any[]) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          } +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Exclude.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Exclude.html new file mode 100644 index 000000000..ce7f11bad --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Exclude.html @@ -0,0 +1,2 @@ +Exclude | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias Exclude<T, U>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Exclude: T extends U ? never : T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Exclude from T those types that are assignable to U

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • U
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Extract.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Extract.html new file mode 100644 index 000000000..77391fb7d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Extract.html @@ -0,0 +1,2 @@ +Extract | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias Extract<T, U>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Extract: T extends U ? T : never

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Extract from T those types that are assignable to U

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • U
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html new file mode 100644 index 000000000..17372b34c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html @@ -0,0 +1 @@ +FeePayerOrFeePayerAuthenticatorOrNeither | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias FeePayerOrFeePayerAuthenticatorOrNeither

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                FeePayerOrFeePayerAuthenticatorOrNeither:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | { feePayer: Account; feePayerAuthenticator?: never }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | { feePayer?: never; feePayerAuthenticator: AccountAuthenticator }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | { feePayer?: never; feePayerAuthenticator?: never }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Fp2.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Fp2.html new file mode 100644 index 000000000..2b8c5b442 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Fp2.html @@ -0,0 +1,3 @@ +Fp2 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias Fp2

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type Fp2 = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      c0: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      c1: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  c0 +c1 +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  c0: bigint
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  c1: bigint
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.FungibleAssetActivitiesBoolExp.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.FungibleAssetActivitiesBoolExp.html new file mode 100644 index 000000000..50ca04386 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.FungibleAssetActivitiesBoolExp.html @@ -0,0 +1,24 @@ +FungibleAssetActivitiesBoolExp | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias FungibleAssetActivitiesBoolExp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Boolean expression to filter rows from the table "fungible_asset_activities". All fields are combined with a logical 'AND'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Optionalentry_function_id_str

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    entry_function_id_str?: InputMaybe<StringComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    gas_fee_payer_address?: InputMaybe<StringComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    is_transaction_success?: InputMaybe<BooleanComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    owner_aptos_names_aggregate?: InputMaybe<CurrentAptosNamesAggregateBoolExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    storage_refund_amount?: InputMaybe<NumericComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    transaction_timestamp?: InputMaybe<TimestampComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    transaction_version?: InputMaybe<BigintComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.FungibleAssetMetadataBoolExp.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.FungibleAssetMetadataBoolExp.html new file mode 100644 index 000000000..bdc33629c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.FungibleAssetMetadataBoolExp.html @@ -0,0 +1,19 @@ +FungibleAssetMetadataBoolExp | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias FungibleAssetMetadataBoolExp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Boolean expression to filter rows from the table "fungible_asset_metadata". All fields are combined with a logical 'AND'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      creator_address?: InputMaybe<StringComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      last_transaction_timestamp?: InputMaybe<TimestampComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      last_transaction_version?: InputMaybe<BigintComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      supply_aggregator_table_handle_v1?: InputMaybe<StringComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      supply_aggregator_table_key_v1?: InputMaybe<StringComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetAccountAddressesForAuthKeyQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetAccountAddressesForAuthKeyQuery.html new file mode 100644 index 000000000..280b1d260 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetAccountAddressesForAuthKeyQuery.html @@ -0,0 +1,2 @@ +GetAccountAddressesForAuthKeyQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetAccountAddressesForAuthKeyQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type GetAccountAddressesForAuthKeyQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            auth_key_account_addresses: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                account_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                auth_key: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                is_auth_key_used: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        auth_key_account_addresses: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            account_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            auth_key: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            is_auth_key_used: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetAccountCoinsDataQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetAccountCoinsDataQuery.html new file mode 100644 index 000000000..36e4d1c4a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetAccountCoinsDataQuery.html @@ -0,0 +1,2 @@ +GetAccountCoinsDataQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetAccountCoinsDataQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type GetAccountCoinsDataQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              current_fungible_asset_balances: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  amount: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  asset_type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  is_frozen: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  is_primary: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  last_transaction_timestamp?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  last_transaction_version?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  metadata?:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          asset_type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          creator_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          decimals: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          icon_uri?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          project_uri?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          supply_aggregator_table_handle_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          supply_aggregator_table_key_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          symbol: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  owner_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  storage_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          current_fungible_asset_balances: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              amount: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              asset_type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              is_frozen: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              is_primary: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              last_transaction_timestamp?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              last_transaction_version?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              metadata?:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      asset_type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      creator_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      decimals: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      icon_uri?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      project_uri?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      supply_aggregator_table_handle_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      supply_aggregator_table_key_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      symbol: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              owner_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              storage_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html new file mode 100644 index 000000000..1e66dfb95 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html @@ -0,0 +1,2 @@ +GetAccountCollectionsWithOwnedTokensQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetAccountCollectionsWithOwnedTokensQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type GetAccountCollectionsWithOwnedTokensQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                current_collection_ownership_v2_view: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    collection_id?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    collection_name?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    collection_uri?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    creator_address?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    current_collection?:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            collection_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            creator_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            current_supply: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            max_supply?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            mutable_description?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            mutable_uri?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            table_handle_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            total_minted_v2?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    distinct_tokens?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    last_transaction_version?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    owner_address?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    single_token_uri?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            current_collection_ownership_v2_view: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                collection_id?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                collection_name?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                collection_uri?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                creator_address?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                current_collection?:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        collection_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        creator_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        current_supply: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        max_supply?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        mutable_description?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        mutable_uri?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        table_handle_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        total_minted_v2?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                distinct_tokens?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                last_transaction_version?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                owner_address?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                single_token_uri?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html new file mode 100644 index 000000000..f0ac66a93 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html @@ -0,0 +1,2 @@ +GetAccountOwnedTokensFromCollectionQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetAccountOwnedTokensFromCollectionQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type GetAccountOwnedTokensFromCollectionQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  current_token_ownerships_v2: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      amount: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      current_token_data?:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              current_collection?: | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  collection_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  creator_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  current_supply: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  max_supply?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  mutable_description?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  mutable_uri?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  table_handle_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  total_minted_v2?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              decimals?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              is_fungible_v2?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              largest_property_version_v1?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              maximum?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              supply?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              token_data_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              token_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              token_properties: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              token_uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      is_fungible_v2?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      is_soulbound_v2?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      owner_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property_version_v1: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      storage_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      table_type_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      token_data_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      token_properties_mutated_v1?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              current_token_ownerships_v2: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  amount: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  current_token_data?:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          current_collection?: | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              collection_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              creator_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              current_supply: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              max_supply?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              mutable_description?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              mutable_uri?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              table_handle_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              total_minted_v2?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          decimals?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          is_fungible_v2?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          largest_property_version_v1?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          maximum?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          supply?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          token_data_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          token_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          token_properties: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          token_uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  is_fungible_v2?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  is_soulbound_v2?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  owner_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property_version_v1: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  storage_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  table_type_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  token_data_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  token_properties_mutated_v1?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetAccountOwnedTokensQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetAccountOwnedTokensQuery.html new file mode 100644 index 000000000..a5d510466 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetAccountOwnedTokensQuery.html @@ -0,0 +1,2 @@ +GetAccountOwnedTokensQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetAccountOwnedTokensQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type GetAccountOwnedTokensQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    current_token_ownerships_v2: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        amount: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        current_token_data?:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                current_collection?: | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    collection_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    creator_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    current_supply: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    max_supply?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    mutable_description?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    mutable_uri?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    table_handle_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    total_minted_v2?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                decimals?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                is_fungible_v2?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                largest_property_version_v1?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                maximum?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                supply?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                token_data_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                token_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                token_properties: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                token_uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        is_fungible_v2?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        is_soulbound_v2?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        owner_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property_version_v1: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        storage_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        table_type_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token_data_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token_properties_mutated_v1?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                current_token_ownerships_v2: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    amount: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    current_token_data?:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            current_collection?: | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                collection_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                creator_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                current_supply: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                max_supply?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                mutable_description?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                mutable_uri?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                table_handle_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                total_minted_v2?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            decimals?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            is_fungible_v2?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            largest_property_version_v1?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            maximum?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            supply?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            token_data_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            token_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            token_properties: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            token_uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    is_fungible_v2?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    is_soulbound_v2?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    owner_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property_version_v1: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    storage_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    table_type_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    token_data_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    token_properties_mutated_v1?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetChainTopUserTransactionsQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetChainTopUserTransactionsQuery.html new file mode 100644 index 000000000..29125ac3d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetChainTopUserTransactionsQuery.html @@ -0,0 +1,2 @@ +GetChainTopUserTransactionsQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetChainTopUserTransactionsQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type GetChainTopUserTransactionsQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      user_transactions: { version: any }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  user_transactions: { version: any }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetCollectionDataQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetCollectionDataQuery.html new file mode 100644 index 000000000..a4d1289d6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetCollectionDataQuery.html @@ -0,0 +1,2 @@ +GetCollectionDataQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetCollectionDataQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type GetCollectionDataQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        current_collections_v2: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            collection_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            creator_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            current_supply: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            max_supply?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            mutable_description?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            mutable_uri?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            table_handle_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            total_minted_v2?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    current_collections_v2: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        collection_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        creator_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        current_supply: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        max_supply?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        mutable_description?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        mutable_uri?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        table_handle_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        total_minted_v2?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetCurrentFungibleAssetBalancesQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetCurrentFungibleAssetBalancesQuery.html new file mode 100644 index 000000000..cf730add1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetCurrentFungibleAssetBalancesQuery.html @@ -0,0 +1,2 @@ +GetCurrentFungibleAssetBalancesQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetCurrentFungibleAssetBalancesQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type GetCurrentFungibleAssetBalancesQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          current_fungible_asset_balances: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              amount: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              asset_type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              is_frozen: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              is_primary: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              last_transaction_timestamp?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              last_transaction_version?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              owner_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              storage_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      current_fungible_asset_balances: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          amount: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          asset_type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          is_frozen: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          is_primary: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          last_transaction_timestamp?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          last_transaction_version?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          owner_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          storage_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetCurrentTokenOwnershipQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetCurrentTokenOwnershipQuery.html new file mode 100644 index 000000000..9f7b48f38 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetCurrentTokenOwnershipQuery.html @@ -0,0 +1,2 @@ +GetCurrentTokenOwnershipQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetCurrentTokenOwnershipQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type GetCurrentTokenOwnershipQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            current_token_ownerships_v2: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                amount: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                current_token_data?:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        current_collection?: | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            collection_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            creator_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            current_supply: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            max_supply?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            mutable_description?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            mutable_uri?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            table_handle_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            total_minted_v2?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        decimals?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        is_fungible_v2?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        largest_property_version_v1?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        maximum?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        supply?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token_data_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token_properties: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token_uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                is_fungible_v2?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                is_soulbound_v2?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                owner_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property_version_v1: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                storage_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                table_type_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                token_data_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                token_properties_mutated_v1?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        current_token_ownerships_v2: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            amount: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            current_token_data?:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    current_collection?: | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        collection_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        creator_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        current_supply: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        max_supply?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        mutable_description?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        mutable_uri?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        table_handle_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        total_minted_v2?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    decimals?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    is_fungible_v2?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    largest_property_version_v1?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    maximum?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    supply?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    token_data_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    token_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    token_properties: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    token_uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            is_fungible_v2?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            is_soulbound_v2?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            owner_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property_version_v1: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            storage_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            table_type_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            token_data_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            token_properties_mutated_v1?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetDelegatedStakingActivitiesQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetDelegatedStakingActivitiesQuery.html new file mode 100644 index 000000000..e0a83150e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetDelegatedStakingActivitiesQuery.html @@ -0,0 +1,2 @@ +GetDelegatedStakingActivitiesQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetDelegatedStakingActivitiesQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type GetDelegatedStakingActivitiesQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              delegated_staking_activities: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  amount: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  delegator_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  event_index: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  event_type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  pool_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          delegated_staking_activities: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              amount: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              delegator_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              event_index: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              event_type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              pool_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetEventsQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetEventsQuery.html new file mode 100644 index 000000000..c1ed800d8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetEventsQuery.html @@ -0,0 +1,2 @@ +GetEventsQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetEventsQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type GetEventsQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                events: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    account_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    creation_number: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    data: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    event_index: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    indexed_type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    sequence_number: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    transaction_block_height: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            events: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                account_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                creation_number: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                data: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                event_index: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                indexed_type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                sequence_number: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                transaction_block_height: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetFungibleAssetActivitiesQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetFungibleAssetActivitiesQuery.html new file mode 100644 index 000000000..b9969ca43 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetFungibleAssetActivitiesQuery.html @@ -0,0 +1,2 @@ +GetFungibleAssetActivitiesQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetFungibleAssetActivitiesQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type GetFungibleAssetActivitiesQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  fungible_asset_activities: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      amount?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      asset_type?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      block_height: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      entry_function_id_str?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      event_index: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      gas_fee_payer_address?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      is_frozen?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      is_gas_fee: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      is_transaction_success: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      owner_address?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      storage_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      storage_refund_amount: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              fungible_asset_activities: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  amount?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  asset_type?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  block_height: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  entry_function_id_str?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  event_index: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  gas_fee_payer_address?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  is_frozen?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  is_gas_fee: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  is_transaction_success: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  owner_address?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  storage_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  storage_refund_amount: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetFungibleAssetMetadataQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetFungibleAssetMetadataQuery.html new file mode 100644 index 000000000..15cc75025 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetFungibleAssetMetadataQuery.html @@ -0,0 +1,2 @@ +GetFungibleAssetMetadataQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetFungibleAssetMetadataQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type GetFungibleAssetMetadataQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    fungible_asset_metadata: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        asset_type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        creator_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        decimals: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        icon_uri?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        maximum_v2?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        project_uri?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        supply_aggregator_table_handle_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        supply_aggregator_table_key_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        supply_v2?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        symbol: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                fungible_asset_metadata: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    asset_type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    creator_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    decimals: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    icon_uri?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    maximum_v2?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    project_uri?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    supply_aggregator_table_handle_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    supply_aggregator_table_key_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    supply_v2?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    symbol: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetNamesQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetNamesQuery.html new file mode 100644 index 000000000..d7da459ae --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetNamesQuery.html @@ -0,0 +1,3 @@ +GetNamesQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetNamesQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type GetNamesQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      current_aptos_names: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          domain?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          domain_expiration_timestamp?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          expiration_timestamp?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          is_primary?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          owner_address?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          registered_address?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          subdomain?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          subdomain_expiration_policy?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          token_standard?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      current_aptos_names_aggregate: { aggregate?: { count: number }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | null };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  current_aptos_names: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      domain?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      domain_expiration_timestamp?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      expiration_timestamp?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      is_primary?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      owner_address?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      registered_address?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      subdomain?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      subdomain_expiration_policy?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      token_standard?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  current_aptos_names_aggregate: { aggregate?: { count: number } | null }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetNumberOfDelegatorsQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetNumberOfDelegatorsQuery.html new file mode 100644 index 000000000..046173ecf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetNumberOfDelegatorsQuery.html @@ -0,0 +1,2 @@ +GetNumberOfDelegatorsQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetNumberOfDelegatorsQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type GetNumberOfDelegatorsQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        num_active_delegator_per_pool: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            num_active_delegator?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            pool_address?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    num_active_delegator_per_pool: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        num_active_delegator?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        pool_address?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetObjectDataQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetObjectDataQuery.html new file mode 100644 index 000000000..67da8d167 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetObjectDataQuery.html @@ -0,0 +1,2 @@ +GetObjectDataQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetObjectDataQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type GetObjectDataQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          current_objects: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              allow_ungated_transfer: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              is_deleted: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              last_guid_creation_num: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              object_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              owner_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              state_key_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      current_objects: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          allow_ungated_transfer: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          is_deleted: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          last_guid_creation_num: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          object_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          owner_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          state_key_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetProcessorStatusQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetProcessorStatusQuery.html new file mode 100644 index 000000000..7f0da1adc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetProcessorStatusQuery.html @@ -0,0 +1,2 @@ +GetProcessorStatusQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetProcessorStatusQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type GetProcessorStatusQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            processor_status: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                last_success_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                last_updated: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                processor: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        processor_status: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            last_success_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            last_updated: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            processor: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetTableItemsDataQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetTableItemsDataQuery.html new file mode 100644 index 000000000..b4e2a5334 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetTableItemsDataQuery.html @@ -0,0 +1,2 @@ +GetTableItemsDataQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetTableItemsDataQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type GetTableItemsDataQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              table_items: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  decoded_key: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  decoded_value?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  key: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  table_handle: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  write_set_change_index: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          table_items: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              decoded_key: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              decoded_value?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              key: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              table_handle: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              write_set_change_index: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetTableItemsMetadataQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetTableItemsMetadataQuery.html new file mode 100644 index 000000000..79a0737f9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetTableItemsMetadataQuery.html @@ -0,0 +1,2 @@ +GetTableItemsMetadataQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetTableItemsMetadataQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type GetTableItemsMetadataQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                table_metadatas: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    handle: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    key_type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    value_type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            table_metadatas: { handle: string; key_type: string; value_type: string }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetTokenActivityQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetTokenActivityQuery.html new file mode 100644 index 000000000..fe21cdc84 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetTokenActivityQuery.html @@ -0,0 +1,2 @@ +GetTokenActivityQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetTokenActivityQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type GetTokenActivityQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  token_activities_v2: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      after_value?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      before_value?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      entry_function_id_str?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      event_account_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      event_index: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      from_address?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      is_fungible_v2?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property_version_v1: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      to_address?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      token_amount: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      token_data_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              token_activities_v2: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  after_value?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  before_value?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  entry_function_id_str?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  event_account_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  event_index: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  from_address?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  is_fungible_v2?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property_version_v1: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  to_address?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  token_amount: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  token_data_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetTokenDataQuery.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetTokenDataQuery.html new file mode 100644 index 000000000..38cfef8c1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.GetTokenDataQuery.html @@ -0,0 +1,2 @@ +GetTokenDataQuery | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetTokenDataQuery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type GetTokenDataQuery = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    current_token_datas_v2: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        current_collection?:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                collection_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                creator_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                current_supply: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                max_supply?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                mutable_description?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                mutable_uri?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                table_handle_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                total_minted_v2?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        decimals?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        is_fungible_v2?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        largest_property_version_v1?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        maximum?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        supply?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token_data_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token_properties: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token_uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                current_token_datas_v2: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    current_collection?:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            collection_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            collection_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            creator_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            current_supply: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            max_supply?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            mutable_description?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            mutable_uri?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            table_handle_v1?: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            total_minted_v2?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    decimals?: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    description: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    is_fungible_v2?: boolean | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    largest_property_version_v1?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    last_transaction_timestamp: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    last_transaction_version: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    maximum?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    supply?: any | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    token_data_id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    token_name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    token_properties: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    token_standard: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    token_uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Groth16VerificationKeyResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Groth16VerificationKeyResponse.html new file mode 100644 index 000000000..e5c78c945 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Groth16VerificationKeyResponse.html @@ -0,0 +1,7 @@ +Groth16VerificationKeyResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias Groth16VerificationKeyResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The response containing the Groth16 verification key, including the alpha_g1 component.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type Groth16VerificationKeyResponse = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      alpha_g1: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      beta_g2: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      delta_g2: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      gamma_abc_g1: [string, string];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      gamma_g2: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  alpha_g1: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  beta_g2: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  delta_g2: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  gamma_abc_g1: [string, string]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  gamma_g2: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.InputMaybe.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.InputMaybe.html new file mode 100644 index 000000000..c209ee545 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.InputMaybe.html @@ -0,0 +1 @@ +InputMaybe | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias InputMaybe<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    InputMaybe: Maybe<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.IntComparisonExp.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.IntComparisonExp.html new file mode 100644 index 000000000..88d4c9123 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.IntComparisonExp.html @@ -0,0 +1,11 @@ +IntComparisonExp | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias IntComparisonExp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type IntComparisonExp = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _eq?: InputMaybe<Scalars["Int"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _gt?: InputMaybe<Scalars["Int"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _gte?: InputMaybe<Scalars["Int"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _in?: InputMaybe<Scalars["Int"]["input"][]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _is_null?: InputMaybe<Scalars["Boolean"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _lt?: InputMaybe<Scalars["Int"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _lte?: InputMaybe<Scalars["Int"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _neq?: InputMaybe<Scalars["Int"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _nin?: InputMaybe<Scalars["Int"]["input"][]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _eq?: InputMaybe<Scalars["Int"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _gt?: InputMaybe<Scalars["Int"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _gte?: InputMaybe<Scalars["Int"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _in?: InputMaybe<Scalars["Int"]["input"][]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _is_null?: InputMaybe<Scalars["Boolean"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _lt?: InputMaybe<Scalars["Int"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _lte?: InputMaybe<Scalars["Int"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _neq?: InputMaybe<Scalars["Int"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _nin?: InputMaybe<Scalars["Int"]["input"][]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.JsonbCastExp.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.JsonbCastExp.html new file mode 100644 index 000000000..cd20fabc6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.JsonbCastExp.html @@ -0,0 +1,2 @@ +JsonbCastExp | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias JsonbCastExp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type JsonbCastExp = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            String?: InputMaybe<StringComparisonExp>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.JsonbComparisonExp.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.JsonbComparisonExp.html new file mode 100644 index 000000000..60998f578 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.JsonbComparisonExp.html @@ -0,0 +1,22 @@ +JsonbComparisonExp | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias JsonbComparisonExp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type JsonbComparisonExp = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _cast?: InputMaybe<JsonbCastExp>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _contained_in?: InputMaybe<Scalars["jsonb"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _contains?: InputMaybe<Scalars["jsonb"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _eq?: InputMaybe<Scalars["jsonb"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _gt?: InputMaybe<Scalars["jsonb"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _gte?: InputMaybe<Scalars["jsonb"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _has_key?: InputMaybe<Scalars["String"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _has_keys_all?: InputMaybe<Scalars["String"]["input"][]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _has_keys_any?: InputMaybe<Scalars["String"]["input"][]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _in?: InputMaybe<Scalars["jsonb"]["input"][]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _is_null?: InputMaybe<Scalars["Boolean"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _lt?: InputMaybe<Scalars["jsonb"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _lte?: InputMaybe<Scalars["jsonb"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _neq?: InputMaybe<Scalars["jsonb"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _nin?: InputMaybe<Scalars["jsonb"]["input"][]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _contained_in?: InputMaybe<Scalars["jsonb"]["input"]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          is the column contained in the given json value

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _contains?: InputMaybe<Scalars["jsonb"]["input"]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          does the column contain the given json value at the top level

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _eq?: InputMaybe<Scalars["jsonb"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _gt?: InputMaybe<Scalars["jsonb"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _gte?: InputMaybe<Scalars["jsonb"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _has_key?: InputMaybe<Scalars["String"]["input"]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          does the string exist as a top-level key in the column

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _has_keys_all?: InputMaybe<Scalars["String"]["input"][]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          do all of these strings exist as top-level keys in the column

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _has_keys_any?: InputMaybe<Scalars["String"]["input"][]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          do any of these strings exist as top-level keys in the column

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _in?: InputMaybe<Scalars["jsonb"]["input"][]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _is_null?: InputMaybe<Scalars["Boolean"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _lt?: InputMaybe<Scalars["jsonb"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _lte?: InputMaybe<Scalars["jsonb"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _neq?: InputMaybe<Scalars["jsonb"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _nin?: InputMaybe<Scalars["jsonb"]["input"][]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.KeylessConfigurationResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.KeylessConfigurationResponse.html new file mode 100644 index 000000000..5ad585b20 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.KeylessConfigurationResponse.html @@ -0,0 +1,10 @@ +KeylessConfigurationResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias KeylessConfigurationResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The response for keyless configuration containing the maximum committed EPK bytes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type KeylessConfigurationResponse = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                max_commited_epk_bytes: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                max_exp_horizon_secs: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                max_extra_field_bytes: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                max_iss_val_bytes: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                max_jwt_header_b64_bytes: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                max_signatures_per_txn: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                override_aud_vals: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                training_wheels_pubkey: { vec: [string] };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            max_commited_epk_bytes: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            max_exp_horizon_secs: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            max_extra_field_bytes: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            max_iss_val_bytes: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            max_jwt_header_b64_bytes: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            max_signatures_per_txn: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            override_aud_vals: string[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            training_wheels_pubkey: { vec: [string] }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Maybe.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Maybe.html new file mode 100644 index 000000000..7277d678d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Maybe.html @@ -0,0 +1 @@ +Maybe | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias Maybe<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Maybe: T | null

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.MoveAnyStruct.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.MoveAnyStruct.html new file mode 100644 index 000000000..c457a8d6e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.MoveAnyStruct.html @@ -0,0 +1,2 @@ +MoveAnyStruct | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias MoveAnyStruct

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type MoveAnyStruct = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    variant: { data: string; type_name: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                variant: { data: string; type_name: string }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.NumericComparisonExp.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.NumericComparisonExp.html new file mode 100644 index 000000000..fbad1485e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.NumericComparisonExp.html @@ -0,0 +1,11 @@ +NumericComparisonExp | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias NumericComparisonExp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Boolean expression to compare columns of type "numeric". All fields are combined with logical 'AND'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type NumericComparisonExp = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _eq?: InputMaybe<Scalars["numeric"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _gt?: InputMaybe<Scalars["numeric"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _gte?: InputMaybe<Scalars["numeric"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _in?: InputMaybe<Scalars["numeric"]["input"][]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _is_null?: InputMaybe<Scalars["Boolean"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _lt?: InputMaybe<Scalars["numeric"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _lte?: InputMaybe<Scalars["numeric"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _neq?: InputMaybe<Scalars["numeric"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _nin?: InputMaybe<Scalars["numeric"]["input"][]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _eq?: InputMaybe<Scalars["numeric"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _gt?: InputMaybe<Scalars["numeric"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _gte?: InputMaybe<Scalars["numeric"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _in?: InputMaybe<Scalars["numeric"]["input"][]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _is_null?: InputMaybe<Scalars["Boolean"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _lt?: InputMaybe<Scalars["numeric"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _lte?: InputMaybe<Scalars["numeric"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _neq?: InputMaybe<Scalars["numeric"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _nin?: InputMaybe<Scalars["numeric"]["input"][]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Omit.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Omit.html new file mode 100644 index 000000000..b87142261 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Omit.html @@ -0,0 +1,2 @@ +Omit | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias Omit<T, K>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Omit: Pick<T, Exclude<keyof T, K>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Construct a type with the properties of T except for those in type K.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • K extends keyof any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Parameters.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Parameters.html new file mode 100644 index 000000000..89887cc77 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Parameters.html @@ -0,0 +1,2 @@ +Parameters | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias Parameters<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters: T extends (...args: infer P) => any ? P : never

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Obtain the parameters of a function type in a tuple

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • T extends (...args: any) => any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Pick.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Pick.html new file mode 100644 index 000000000..5ab2e71b0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Pick.html @@ -0,0 +1,2 @@ +Pick | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias Pick<T, K>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pick: { [P in K]: T[P] }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        From T, pick a set of properties whose keys are in the union K

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • K extends keyof T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.ProjPointType.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.ProjPointType.html new file mode 100644 index 000000000..755e27ce1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.ProjPointType.html @@ -0,0 +1,2 @@ +ProjPointType | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias ProjPointType<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ProjPointType: WeierstrassPoint<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          use WeierstrassPoint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.PropertyValue.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.PropertyValue.html new file mode 100644 index 000000000..a6e7e997f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.PropertyValue.html @@ -0,0 +1,4 @@ +PropertyValue | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias PropertyValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PropertyValue: boolean | number | bigint | string | AccountAddress | Uint8Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Accepted property value types for user input, including boolean, number, bigint, string, AccountAddress, and Uint8Array. +To pass in an Array, use Uint8Array type +for example new MoveVector([new MoveString("hello"), new MoveString("world")]).bcsToBytes()

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Record.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Record.html new file mode 100644 index 000000000..3ad52c71e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Record.html @@ -0,0 +1,2 @@ +Record | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias Record<K, T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Record: { [P in K]: T }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Construct a type with a set of properties K of type T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • K extends keyof any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Scalars.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Scalars.html new file mode 100644 index 000000000..89f793fa4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.Scalars.html @@ -0,0 +1,11 @@ +Scalars | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias Scalars

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                All built-in and custom scalars, mapped to their actual values

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type Scalars = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    bigint: { input: any; output: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Boolean: { input: boolean; output: boolean };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Float: { input: number; output: number };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ID: { input: string; output: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Int: { input: number; output: number };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    jsonb: { input: any; output: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    numeric: { input: any; output: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    String: { input: string; output: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    timestamp: { input: any; output: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                bigint: { input: any; output: any }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Boolean: { input: boolean; output: boolean }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Float: { input: number; output: number }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ID: { input: string; output: string }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Int: { input: number; output: number }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                jsonb: { input: any; output: any }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                numeric: { input: any; output: any }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                String: { input: string; output: string }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                timestamp: { input: any; output: any }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.StringComparisonExp.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.StringComparisonExp.html new file mode 100644 index 000000000..4b41e480d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.StringComparisonExp.html @@ -0,0 +1,31 @@ +StringComparisonExp | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias StringComparisonExp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type StringComparisonExp = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _eq?: InputMaybe<Scalars["String"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _gt?: InputMaybe<Scalars["String"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _gte?: InputMaybe<Scalars["String"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _ilike?: InputMaybe<Scalars["String"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _in?: InputMaybe<Scalars["String"]["input"][]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _iregex?: InputMaybe<Scalars["String"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _is_null?: InputMaybe<Scalars["Boolean"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _like?: InputMaybe<Scalars["String"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _lt?: InputMaybe<Scalars["String"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _lte?: InputMaybe<Scalars["String"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _neq?: InputMaybe<Scalars["String"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _nilike?: InputMaybe<Scalars["String"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _nin?: InputMaybe<Scalars["String"]["input"][]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _niregex?: InputMaybe<Scalars["String"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _nlike?: InputMaybe<Scalars["String"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _nregex?: InputMaybe<Scalars["String"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _nsimilar?: InputMaybe<Scalars["String"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _regex?: InputMaybe<Scalars["String"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _similar?: InputMaybe<Scalars["String"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _eq?: InputMaybe<Scalars["String"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _gt?: InputMaybe<Scalars["String"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _gte?: InputMaybe<Scalars["String"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _ilike?: InputMaybe<Scalars["String"]["input"]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  does the column match the given case-insensitive pattern

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _in?: InputMaybe<Scalars["String"]["input"][]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _iregex?: InputMaybe<Scalars["String"]["input"]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  does the column match the given POSIX regular expression, case insensitive

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _is_null?: InputMaybe<Scalars["Boolean"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _like?: InputMaybe<Scalars["String"]["input"]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  does the column match the given pattern

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _lt?: InputMaybe<Scalars["String"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _lte?: InputMaybe<Scalars["String"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _neq?: InputMaybe<Scalars["String"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _nilike?: InputMaybe<Scalars["String"]["input"]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  does the column NOT match the given case-insensitive pattern

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _nin?: InputMaybe<Scalars["String"]["input"][]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _niregex?: InputMaybe<Scalars["String"]["input"]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  does the column NOT match the given POSIX regular expression, case insensitive

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _nlike?: InputMaybe<Scalars["String"]["input"]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  does the column NOT match the given pattern

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _nregex?: InputMaybe<Scalars["String"]["input"]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  does the column NOT match the given POSIX regular expression, case sensitive

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _nsimilar?: InputMaybe<Scalars["String"]["input"]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  does the column NOT match the given SQL regular expression

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _regex?: InputMaybe<Scalars["String"]["input"]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  does the column match the given POSIX regular expression, case sensitive

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _similar?: InputMaybe<Scalars["String"]["input"]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  does the column match the given SQL regular expression

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.TableItemsBoolExp.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.TableItemsBoolExp.html new file mode 100644 index 000000000..43b35b733 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.TableItemsBoolExp.html @@ -0,0 +1,11 @@ +TableItemsBoolExp | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias TableItemsBoolExp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Boolean expression to filter rows from the table "table_items". All fields are combined with a logical 'AND'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    transaction_version?: InputMaybe<BigintComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    write_set_change_index?: InputMaybe<BigintComparisonExp>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.TableMetadatasBoolExp.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.TableMetadatasBoolExp.html new file mode 100644 index 000000000..9402ce83e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.TableMetadatasBoolExp.html @@ -0,0 +1,8 @@ +TableMetadatasBoolExp | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias TableMetadatasBoolExp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Boolean expression to filter rows from the table "table_metadatas". All fields are combined with a logical 'AND'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.TimestampComparisonExp.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.TimestampComparisonExp.html new file mode 100644 index 000000000..533fe3229 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateCode.TimestampComparisonExp.html @@ -0,0 +1,11 @@ +TimestampComparisonExp | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias TimestampComparisonExp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Boolean expression to compare columns of type "timestamp". All fields are combined with logical 'AND'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type TimestampComparisonExp = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _eq?: InputMaybe<Scalars["timestamp"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _gt?: InputMaybe<Scalars["timestamp"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _gte?: InputMaybe<Scalars["timestamp"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _in?: InputMaybe<Scalars["timestamp"]["input"][]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _is_null?: InputMaybe<Scalars["Boolean"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _lt?: InputMaybe<Scalars["timestamp"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _lte?: InputMaybe<Scalars["timestamp"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _neq?: InputMaybe<Scalars["timestamp"]["input"]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _nin?: InputMaybe<Scalars["timestamp"]["input"][]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _eq?: InputMaybe<Scalars["timestamp"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _gt?: InputMaybe<Scalars["timestamp"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _gte?: InputMaybe<Scalars["timestamp"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _in?: InputMaybe<Scalars["timestamp"]["input"][]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _is_null?: InputMaybe<Scalars["Boolean"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _lt?: InputMaybe<Scalars["timestamp"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _lte?: InputMaybe<Scalars["timestamp"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _neq?: InputMaybe<Scalars["timestamp"]["input"]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _nin?: InputMaybe<Scalars["timestamp"]["input"][]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateKeyInput.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateKeyInput.html new file mode 100644 index 000000000..43ec35021 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/PrivateKeyInput.html @@ -0,0 +1 @@ +PrivateKeyInput | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias PrivateKeyInput

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/ProofFetchCallback.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/ProofFetchCallback.html new file mode 100644 index 000000000..394eaad81 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/ProofFetchCallback.html @@ -0,0 +1 @@ +ProofFetchCallback | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias ProofFetchCallback

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ProofFetchCallback: (status: ProofFetchStatus) => Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/ProofFetchFailure.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/ProofFetchFailure.html new file mode 100644 index 000000000..a62db215c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/ProofFetchFailure.html @@ -0,0 +1,3 @@ +ProofFetchFailure | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias ProofFetchFailure

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type ProofFetchFailure = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  error: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  status: "Failed";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              error: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              status: "Failed"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/ProofFetchStatus.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/ProofFetchStatus.html new file mode 100644 index 000000000..69f68ae09 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/ProofFetchStatus.html @@ -0,0 +1 @@ +ProofFetchStatus | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/ProofFetchSuccess.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/ProofFetchSuccess.html new file mode 100644 index 000000000..0c4d74695 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/ProofFetchSuccess.html @@ -0,0 +1,2 @@ +ProofFetchSuccess | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias ProofFetchSuccess

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type ProofFetchSuccess = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      status: "Success";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  status: "Success"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/RawANSName.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/RawANSName.html new file mode 100644 index 000000000..9be834d3e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/RawANSName.html @@ -0,0 +1 @@ +RawANSName | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias RawANSName

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    RawANSName: any[][0]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/ScriptFunctionArgumentTypes.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/ScriptFunctionArgumentTypes.html new file mode 100644 index 000000000..71a87979b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/ScriptFunctionArgumentTypes.html @@ -0,0 +1,2 @@ +ScriptFunctionArgumentTypes | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias ScriptFunctionArgumentTypes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ScriptFunctionArgumentTypes:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | Bool
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | U8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | U16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | U32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | U64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | U128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | U256
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | I8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | I16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | I32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | I64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | I128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | I256
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | AccountAddress
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | MoveVector<ScriptFunctionArgumentTypes>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | MoveString
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | FixedBytes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | Serialized

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Script function arguments for building raw transactions using BCS serialized arguments.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/ScriptPayloadResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/ScriptPayloadResponse.html new file mode 100644 index 000000000..08cbb931b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/ScriptPayloadResponse.html @@ -0,0 +1,8 @@ +ScriptPayloadResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias ScriptPayloadResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The payload for a script response, containing the type of the script.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type ScriptPayloadResponse = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            arguments: any[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            code: MoveScriptBytecode;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type_arguments: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        arguments: any[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Arguments of the function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type_arguments: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type arguments of the function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/ScriptWriteSet.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/ScriptWriteSet.html new file mode 100644 index 000000000..6d9a67260 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/ScriptWriteSet.html @@ -0,0 +1,5 @@ +ScriptWriteSet | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias ScriptWriteSet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The set of properties for writing scripts, including the type of script.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type ScriptWriteSet = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              execute_as: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              script: ScriptPayloadResponse;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          execute_as: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/SimpleEntryFunctionArgumentTypes.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/SimpleEntryFunctionArgumentTypes.html new file mode 100644 index 000000000..cbf743fe9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/SimpleEntryFunctionArgumentTypes.html @@ -0,0 +1,2 @@ +SimpleEntryFunctionArgumentTypes | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias SimpleEntryFunctionArgumentTypes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SimpleEntryFunctionArgumentTypes:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | bigint
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | Uint8Array
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | ArrayBuffer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | (SimpleEntryFunctionArgumentTypes | EntryFunctionArgumentTypes)[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Entry function arguments for building a raw transaction using remote ABI, supporting various data types including primitives and arrays.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/SingleKeySignerFromDerivationPathArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/SingleKeySignerFromDerivationPathArgs.html new file mode 100644 index 000000000..4eaf8aefb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/SingleKeySignerFromDerivationPathArgs.html @@ -0,0 +1,2 @@ +SingleKeySignerFromDerivationPathArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias SingleKeySignerFromDerivationPathArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SingleKeySignerFromDerivationPathArgs: SingleKeySignerGenerateArgs & {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  mnemonic: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  path: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The arguments for generating a single key signer from a specified derivation path.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/SingleKeySignerOrLegacyEd25519Account.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/SingleKeySignerOrLegacyEd25519Account.html new file mode 100644 index 000000000..cd6ebb43d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/SingleKeySignerOrLegacyEd25519Account.html @@ -0,0 +1 @@ +SingleKeySignerOrLegacyEd25519Account | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias SingleKeySignerOrLegacyEd25519Account

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SingleKeySignerOrLegacyEd25519Account: SingleKeySigner | Ed25519Account
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/StateCheckpointTransactionResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/StateCheckpointTransactionResponse.html new file mode 100644 index 000000000..f4a3eb7b9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/StateCheckpointTransactionResponse.html @@ -0,0 +1,17 @@ +StateCheckpointTransactionResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias StateCheckpointTransactionResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The response for a state checkpoint transaction, indicating the type of transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type StateCheckpointTransactionResponse = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      accumulator_root_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      changes: WriteSetChange[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      event_root_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      gas_used: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      state_change_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      state_checkpoint_hash: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      success: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      timestamp: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: StateCheckpoint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      version: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      vm_status: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  accumulator_root_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  changes: WriteSetChange[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Final state of resources changed by the transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  event_root_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  gas_used: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  state_change_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  state_checkpoint_hash: string | null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  success: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whether the transaction was successful

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  timestamp: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  vm_status: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The VM status of the transaction, can tell useful information in a failure

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/SuccessEventData.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/SuccessEventData.html new file mode 100644 index 000000000..67f5c0c79 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/SuccessEventData.html @@ -0,0 +1,4 @@ +SuccessEventData | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias SuccessEventData

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The payload for a success event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type SuccessEventData = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        message: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        transactionHash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    message: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    transactionHash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/TableItemRequest.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/TableItemRequest.html new file mode 100644 index 000000000..dbb99b598 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/TableItemRequest.html @@ -0,0 +1,6 @@ +TableItemRequest | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias TableItemRequest

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The request payload for the GetTableItem API.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type TableItemRequest = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          key: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          key_type: MoveValue;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          value_type: MoveValue;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      key: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The value of the table item's key

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      key_type: MoveValue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      value_type: MoveValue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/TokenStandard.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/TokenStandard.html new file mode 100644 index 000000000..c7bee6998 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/TokenStandard.html @@ -0,0 +1,2 @@ +TokenStandard | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias TokenStandard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        TokenStandard: "v1" | "v2"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The token standard to query for, which can be either version "v1" or "v2".

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionEd25519Signature.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionEd25519Signature.html new file mode 100644 index 000000000..a10713fb3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionEd25519Signature.html @@ -0,0 +1,5 @@ +TransactionEd25519Signature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias TransactionEd25519Signature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The signature for a transaction using the Ed25519 algorithm.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type TransactionEd25519Signature = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              public_key: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              signature: "ed25519_signature";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          public_key: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          signature: "ed25519_signature"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionFeePayerSignature.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionFeePayerSignature.html new file mode 100644 index 000000000..e5714f35d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionFeePayerSignature.html @@ -0,0 +1,10 @@ +TransactionFeePayerSignature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias TransactionFeePayerSignature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The signature of the fee payer in a transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type TransactionFeePayerSignature = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                fee_payer_address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                fee_payer_signer: AccountSignature;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                secondary_signer_addresses: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                secondary_signers: AccountSignature[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                sender: AccountSignature;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type: "fee_payer_signature";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            fee_payer_address: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            fee_payer_signer: AccountSignature
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            secondary_signer_addresses: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The other involved parties' addresses

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            secondary_signers: AccountSignature[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The associated signatures, in the same order as the secondary addresses

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type: "fee_payer_signature"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionGenerationConfig.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionGenerationConfig.html new file mode 100644 index 000000000..501f0b986 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionGenerationConfig.html @@ -0,0 +1,4 @@ +TransactionGenerationConfig | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias TransactionGenerationConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A configuration object for default parameters for transaction generation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type TransactionGenerationConfig = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  defaultMaxGasAmount?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  defaultTxnExpirySecFromNow?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              defaultMaxGasAmount?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              defaultTxnExpirySecFromNow?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionMultiAgentSignature.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionMultiAgentSignature.html new file mode 100644 index 000000000..ef3edff84 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionMultiAgentSignature.html @@ -0,0 +1,8 @@ +TransactionMultiAgentSignature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias TransactionMultiAgentSignature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The structure for a multi-agent signature in a transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type TransactionMultiAgentSignature = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    secondary_signer_addresses: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    secondary_signers: AccountSignature[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    sender: AccountSignature;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type: "multi_agent_signature";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                secondary_signer_addresses: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The other involved parties' addresses

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                secondary_signers: AccountSignature[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The associated signatures, in the same order as the secondary addresses

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type: "multi_agent_signature"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionMultiEd25519Signature.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionMultiEd25519Signature.html new file mode 100644 index 000000000..1c51a1b27 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionMultiEd25519Signature.html @@ -0,0 +1,10 @@ +TransactionMultiEd25519Signature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias TransactionMultiEd25519Signature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The structure for a multi-signature transaction using Ed25519.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type TransactionMultiEd25519Signature = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      bitmap: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      public_keys: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      signatures: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      threshold: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: "multi_ed25519_signature";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  bitmap: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  public_keys: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The public keys for the Ed25519 signature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  signatures: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Signature associated with the public keys in the same order

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  threshold: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The number of signatures required for a successful transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "multi_ed25519_signature"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionPayloadResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionPayloadResponse.html new file mode 100644 index 000000000..4a4ac7c22 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionPayloadResponse.html @@ -0,0 +1,2 @@ +TransactionPayloadResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias TransactionPayloadResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TransactionPayloadResponse:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | EntryFunctionPayloadResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | ScriptPayloadResponse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | MultisigPayloadResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The payload for a transaction response, which can be an entry function, script, or multisig payload.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionResponse.html new file mode 100644 index 000000000..84a555ef8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionResponse.html @@ -0,0 +1,2 @@ +TransactionResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias TransactionResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The response for a transaction, which can be either pending or committed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionSecp256k1Signature.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionSecp256k1Signature.html new file mode 100644 index 000000000..b5f9662bf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionSecp256k1Signature.html @@ -0,0 +1,5 @@ +TransactionSecp256k1Signature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias TransactionSecp256k1Signature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The structure for a Secp256k1 signature in a transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type TransactionSecp256k1Signature = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            public_key: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            signature: "secp256k1_ecdsa_signature";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        public_key: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        signature: "secp256k1_ecdsa_signature"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionSignature.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionSignature.html new file mode 100644 index 000000000..237cdbc1c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionSignature.html @@ -0,0 +1,2 @@ +TransactionSignature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias TransactionSignature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          JSON representations of transaction signatures returned from the node API.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionSingleSenderSignature.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionSingleSenderSignature.html new file mode 100644 index 000000000..fa8eed7c3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/TransactionSingleSenderSignature.html @@ -0,0 +1,5 @@ +TransactionSingleSenderSignature | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias TransactionSingleSenderSignature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The structure for a multi-signature transaction using Ed25519.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type TransactionSingleSenderSignature = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                public_key: { type: string; value: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                signature: { type: string; value: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type: "single_sender";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            public_key: { type: string; value: string }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            signature: { type: string; value: string }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type: "single_sender"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/TypeArgument.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/TypeArgument.html new file mode 100644 index 000000000..b8882c86d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/TypeArgument.html @@ -0,0 +1,27 @@ +TypeArgument | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias TypeArgument

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TypeArgument: TypeTag | string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Inputs for Entry functions, view functions, and scripts, which can be a string representation of various types including +primitive types, vectors, and structured types.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This can be a string version of the type argument such as:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • u8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • u16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • u32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • u64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • u128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • u256
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • i8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • i16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • i32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • i64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • i128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • i256
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • bool
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • address
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • signer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • vector
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • address::module::struct
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • address::module::struct<Type1, Type2>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/Uint128.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/Uint128.html new file mode 100644 index 000000000..989c576ce --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/Uint128.html @@ -0,0 +1,2 @@ +Uint128 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias Uint128

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Uint128: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A 128-bit unsigned integer used for precise arithmetic operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/Uint16.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/Uint16.html new file mode 100644 index 000000000..d8ffae9c3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/Uint16.html @@ -0,0 +1,2 @@ +Uint16 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias Uint16

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Uint16: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A 16-bit unsigned integer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/Uint256.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/Uint256.html new file mode 100644 index 000000000..05ce05039 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/Uint256.html @@ -0,0 +1,2 @@ +Uint256 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias Uint256

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Uint256: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A 256-bit unsigned integer used for precise numerical calculations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/Uint32.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/Uint32.html new file mode 100644 index 000000000..cf47870e2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/Uint32.html @@ -0,0 +1,2 @@ +Uint32 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias Uint32

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Uint32: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A 32-bit unsigned integer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/Uint64.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/Uint64.html new file mode 100644 index 000000000..c2fb7193c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/Uint64.html @@ -0,0 +1,2 @@ +Uint64 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias Uint64

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Uint64: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A 64-bit unsigned integer value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/Uint8.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/Uint8.html new file mode 100644 index 000000000..0e5fb3969 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/Uint8.html @@ -0,0 +1,2 @@ +Uint8 | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias Uint8

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Uint8: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BCS types

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/UserTransactionResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/UserTransactionResponse.html new file mode 100644 index 000000000..4e4208660 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/UserTransactionResponse.html @@ -0,0 +1,27 @@ +UserTransactionResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias UserTransactionResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The response structure for a user transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type UserTransactionResponse = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                accumulator_root_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                changes: WriteSetChange[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                event_root_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                events: Event[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                expiration_timestamp_secs: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                gas_unit_price: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                gas_used: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                max_gas_amount: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                payload: TransactionPayloadResponse;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                replay_protection_nonce: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                sender: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                sequence_number: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                signature?: TransactionSignature;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                state_change_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                state_checkpoint_hash: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                success: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                timestamp: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type: User;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                version: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                vm_status: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            accumulator_root_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            changes: WriteSetChange[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Final state of resources changed by the transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            event_root_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            events: Event[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Events generated by the transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            expiration_timestamp_secs: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            gas_unit_price: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            gas_used: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            max_gas_amount: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            replay_protection_nonce: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            sender: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            sequence_number: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            state_change_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            state_checkpoint_hash: string | null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            success: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whether the transaction was successful

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            timestamp: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type: User
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            version: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            vm_status: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The VM status of the transaction, can tell useful information in a failure

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/ValidatorTransactionResponse.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/ValidatorTransactionResponse.html new file mode 100644 index 000000000..8cd021a37 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/ValidatorTransactionResponse.html @@ -0,0 +1,19 @@ +ValidatorTransactionResponse | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias ValidatorTransactionResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The response for a validator transaction, indicating the type of transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type ValidatorTransactionResponse = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  accumulator_root_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  changes: WriteSetChange[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  event_root_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  events: Event[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  gas_used: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  state_change_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  state_checkpoint_hash: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  success: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  timestamp: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: Validator;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  vm_status: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              accumulator_root_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              changes: WriteSetChange[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Final state of resources changed by the transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              event_root_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              events: Event[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The events emitted by the validator transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              gas_used: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              state_change_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              state_checkpoint_hash: string | null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              success: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Whether the transaction was successful

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              timestamp: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type: Validator
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              vm_status: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The VM status of the transaction, can tell useful information in a failure

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/VerifySignatureAsyncArgs.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/VerifySignatureAsyncArgs.html new file mode 100644 index 000000000..ee3872028 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/VerifySignatureAsyncArgs.html @@ -0,0 +1,7 @@ +VerifySignatureAsyncArgs | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias VerifySignatureAsyncArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                VerifySignatureAsyncArgs: VerifySignatureArgs & {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    aptosConfig: AptosConfig;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    options?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Represents the arguments required to verify a digital signature asynchronously.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The validity of certain types of signatures are dependent on network state. This is the case for +Keyless signatures which need to lookup the verification key and keyless configuration.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Aptos configuration to use

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The original message that was signed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The signature to be verified against the message.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/ViewFunctionABI.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/ViewFunctionABI.html new file mode 100644 index 000000000..6f3daf97e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/ViewFunctionABI.html @@ -0,0 +1,2 @@ +ViewFunctionABI | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias ViewFunctionABI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ViewFunctionABI: FunctionABI & { returnTypes: TypeTag[] }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface for a view function's ABI, providing type checking and input conversion for ABI-based transaction submissions.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/ViewFunctionJsonPayload.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/ViewFunctionJsonPayload.html new file mode 100644 index 000000000..e65cd50a9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/ViewFunctionJsonPayload.html @@ -0,0 +1,5 @@ +ViewFunctionJsonPayload | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias ViewFunctionJsonPayload

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The payload sent to the fullnode for a JSON view request.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type ViewFunctionJsonPayload = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        function: MoveFunctionId;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        functionArguments: MoveValue[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        typeArguments: MoveStructId[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    function: MoveFunctionId
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    functionArguments: MoveValue[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    typeArguments: MoveStructId[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/WaitForTransactionOptions.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/WaitForTransactionOptions.html new file mode 100644 index 000000000..5c7fd17d8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/WaitForTransactionOptions.html @@ -0,0 +1,5 @@ +WaitForTransactionOptions | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias WaitForTransactionOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Options for configuring the behavior of the waitForTransaction() function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type WaitForTransactionOptions = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          checkSuccess?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          timeoutSecs?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          waitForIndexer?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      checkSuccess?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      timeoutSecs?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      waitForIndexer?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSet.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSet.html new file mode 100644 index 000000000..cedce0d5b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSet.html @@ -0,0 +1 @@ +WriteSet | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias WriteSet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChange.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChange.html new file mode 100644 index 000000000..7337e9fb3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChange.html @@ -0,0 +1,2 @@ +WriteSetChange | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias WriteSetChange

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A union type that encompasses both script and direct write sets for data operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChangeDeleteModule.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChangeDeleteModule.html new file mode 100644 index 000000000..dc15e136a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChangeDeleteModule.html @@ -0,0 +1,7 @@ +WriteSetChangeDeleteModule | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias WriteSetChangeDeleteModule

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The structure for a module deletion change in a write set.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type WriteSetChangeDeleteModule = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                module: MoveModuleId;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                state_key_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            address: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            module: MoveModuleId
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            state_key_hash: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            State key hash

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChangeDeleteResource.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChangeDeleteResource.html new file mode 100644 index 000000000..80da2b306 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChangeDeleteResource.html @@ -0,0 +1,6 @@ +WriteSetChangeDeleteResource | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias WriteSetChangeDeleteResource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The payload for a resource deletion in a write set change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type WriteSetChangeDeleteResource = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  resource: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  state_key_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              address: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              resource: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              state_key_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChangeDeleteTableItem.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChangeDeleteTableItem.html new file mode 100644 index 000000000..27f4b8c28 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChangeDeleteTableItem.html @@ -0,0 +1,7 @@ +WriteSetChangeDeleteTableItem | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias WriteSetChangeDeleteTableItem

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The payload for a write set change that deletes a table item.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type WriteSetChangeDeleteTableItem = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    data?: DeletedTableData;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    handle: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    key: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    state_key_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                handle: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                key: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                state_key_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChangeWriteModule.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChangeWriteModule.html new file mode 100644 index 000000000..53d638be2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChangeWriteModule.html @@ -0,0 +1,6 @@ +WriteSetChangeWriteModule | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias WriteSetChangeWriteModule

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The structure for a write module change in a write set.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type WriteSetChangeWriteModule = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      data: MoveModuleBytecode;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      state_key_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  address: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  state_key_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChangeWriteResource.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChangeWriteResource.html new file mode 100644 index 000000000..3e63457d7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChangeWriteResource.html @@ -0,0 +1,6 @@ +WriteSetChangeWriteResource | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias WriteSetChangeWriteResource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The resource associated with a write set change, identified by its type.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type WriteSetChangeWriteResource = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        data: MoveResource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        state_key_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    address: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    state_key_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChangeWriteTableItem.html b/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChangeWriteTableItem.html new file mode 100644 index 000000000..3b840658f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/types/WriteSetChangeWriteTableItem.html @@ -0,0 +1,8 @@ +WriteSetChangeWriteTableItem | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias WriteSetChangeWriteTableItem

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The structure for a write operation on a table in a write set change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type WriteSetChangeWriteTableItem = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          data?: DecodedTableData;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          handle: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          key: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          state_key_hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          value: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      handle: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      key: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      state_key_hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      value: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/ACCOUNT_ABSTRACTION_SIGNING_DATA_SALT.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/ACCOUNT_ABSTRACTION_SIGNING_DATA_SALT.html new file mode 100644 index 000000000..341d70acf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/ACCOUNT_ABSTRACTION_SIGNING_DATA_SALT.html @@ -0,0 +1 @@ +ACCOUNT_ABSTRACTION_SIGNING_DATA_SALT | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Variable ACCOUNT_ABSTRACTION_SIGNING_DATA_SALTConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ACCOUNT_ABSTRACTION_SIGNING_DATA_SALT: "APTOS::AASigningData"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/APTOS_BIP44_REGEX.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/APTOS_BIP44_REGEX.html new file mode 100644 index 000000000..87550ec31 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/APTOS_BIP44_REGEX.html @@ -0,0 +1 @@ +APTOS_BIP44_REGEX | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variable APTOS_BIP44_REGEXConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          APTOS_BIP44_REGEX: RegExp = ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/APTOS_COIN.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/APTOS_COIN.html new file mode 100644 index 000000000..949d18d1a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/APTOS_COIN.html @@ -0,0 +1,2 @@ +APTOS_COIN | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Variable APTOS_COINConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            APTOS_COIN: "0x1::aptos_coin::AptosCoin"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The default gas currency for the network.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/APTOS_FA.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/APTOS_FA.html new file mode 100644 index 000000000..d18b81d30 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/APTOS_FA.html @@ -0,0 +1 @@ +APTOS_FA | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variable APTOS_FAConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              APTOS_FA: "0x000000000000000000000000000000000000000000000000000000000000000a"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/APTOS_HARDENED_REGEX.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/APTOS_HARDENED_REGEX.html new file mode 100644 index 000000000..b5ec7b9f8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/APTOS_HARDENED_REGEX.html @@ -0,0 +1,2 @@ +APTOS_HARDENED_REGEX | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Variable APTOS_HARDENED_REGEXConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                APTOS_HARDENED_REGEX: RegExp = ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Aptos derive path is 637

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/DEFAULT_MAX_GAS_AMOUNT.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/DEFAULT_MAX_GAS_AMOUNT.html new file mode 100644 index 000000000..bf9106a6a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/DEFAULT_MAX_GAS_AMOUNT.html @@ -0,0 +1,5 @@ +DEFAULT_MAX_GAS_AMOUNT | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variable DEFAULT_MAX_GAS_AMOUNTConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DEFAULT_MAX_GAS_AMOUNT: 2000000

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The default max gas amount when none is given.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is the maximum number of gas units that will be used by a transaction before being rejected.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Note that max gas amount varies based on the transaction. A larger transaction will go over this +default gas amount, and the value will need to be changed for the specific transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/DEFAULT_TXN_EXP_SEC_FROM_NOW.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/DEFAULT_TXN_EXP_SEC_FROM_NOW.html new file mode 100644 index 000000000..57fec275b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/DEFAULT_TXN_EXP_SEC_FROM_NOW.html @@ -0,0 +1,5 @@ +DEFAULT_TXN_EXP_SEC_FROM_NOW | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Variable DEFAULT_TXN_EXP_SEC_FROM_NOWConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DEFAULT_TXN_EXP_SEC_FROM_NOW: 20

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The default transaction expiration seconds from now.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This time is how long until the blockchain nodes will reject the transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Note that the transaction expiration time varies based on network connection and network load. It may need to be +increased for the transaction to be processed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/DEFAULT_TXN_TIMEOUT_SEC.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/DEFAULT_TXN_TIMEOUT_SEC.html new file mode 100644 index 000000000..306f0cac6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/DEFAULT_TXN_TIMEOUT_SEC.html @@ -0,0 +1,4 @@ +DEFAULT_TXN_TIMEOUT_SEC | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variable DEFAULT_TXN_TIMEOUT_SECConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DEFAULT_TXN_TIMEOUT_SEC: 20

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The default number of seconds to wait for a transaction to be processed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This time is the amount of time that the SDK will wait for a transaction to be processed when waiting for +the results of the transaction. It may take longer based on network connection and network load.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/EPK_HORIZON_SECS.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/EPK_HORIZON_SECS.html new file mode 100644 index 000000000..97ec1fedb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/EPK_HORIZON_SECS.html @@ -0,0 +1 @@ +EPK_HORIZON_SECS | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Variable EPK_HORIZON_SECSConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        EPK_HORIZON_SECS: 10000000
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/FIREBASE_AUTH_ISS_PATTERN.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/FIREBASE_AUTH_ISS_PATTERN.html new file mode 100644 index 000000000..330bbd8d2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/FIREBASE_AUTH_ISS_PATTERN.html @@ -0,0 +1,4 @@ +FIREBASE_AUTH_ISS_PATTERN | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variable FIREBASE_AUTH_ISS_PATTERNConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          FIREBASE_AUTH_ISS_PATTERN: RegExp = ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Regular expression pattern for Firebase Auth issuer URLs +Matches URLs in the format: https://securetoken.google.com/[project-id] +where project-id can contain letters, numbers, hyphens, and underscores

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/HARDENED_OFFSET.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/HARDENED_OFFSET.html new file mode 100644 index 000000000..59049ff0f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/HARDENED_OFFSET.html @@ -0,0 +1 @@ +HARDENED_OFFSET | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Variable HARDENED_OFFSETConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HARDENED_OFFSET: 2147483648 = 0x80000000
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_AUD_VAL_BYTES.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_AUD_VAL_BYTES.html new file mode 100644 index 000000000..722cbfb24 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_AUD_VAL_BYTES.html @@ -0,0 +1 @@ +MAX_AUD_VAL_BYTES | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variable MAX_AUD_VAL_BYTESConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MAX_AUD_VAL_BYTES: 120
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_COMMITED_EPK_BYTES.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_COMMITED_EPK_BYTES.html new file mode 100644 index 000000000..331522bc9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_COMMITED_EPK_BYTES.html @@ -0,0 +1 @@ +MAX_COMMITED_EPK_BYTES | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Variable MAX_COMMITED_EPK_BYTESConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MAX_COMMITED_EPK_BYTES: 93
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_EXTRA_FIELD_BYTES.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_EXTRA_FIELD_BYTES.html new file mode 100644 index 000000000..f0e7d4ba0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_EXTRA_FIELD_BYTES.html @@ -0,0 +1 @@ +MAX_EXTRA_FIELD_BYTES | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variable MAX_EXTRA_FIELD_BYTESConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MAX_EXTRA_FIELD_BYTES: 350
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_ISS_VAL_BYTES.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_ISS_VAL_BYTES.html new file mode 100644 index 000000000..2c92a8402 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_ISS_VAL_BYTES.html @@ -0,0 +1 @@ +MAX_ISS_VAL_BYTES | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Variable MAX_ISS_VAL_BYTESConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MAX_ISS_VAL_BYTES: 120
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_JWT_HEADER_B64_BYTES.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_JWT_HEADER_B64_BYTES.html new file mode 100644 index 000000000..e5e3ad61f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_JWT_HEADER_B64_BYTES.html @@ -0,0 +1 @@ +MAX_JWT_HEADER_B64_BYTES | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variable MAX_JWT_HEADER_B64_BYTESConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MAX_JWT_HEADER_B64_BYTES: 300
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_UID_KEY_BYTES.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_UID_KEY_BYTES.html new file mode 100644 index 000000000..b8279d744 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_UID_KEY_BYTES.html @@ -0,0 +1 @@ +MAX_UID_KEY_BYTES | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Variable MAX_UID_KEY_BYTESConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MAX_UID_KEY_BYTES: 30
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_UID_VAL_BYTES.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_UID_VAL_BYTES.html new file mode 100644 index 000000000..4f0f54a3b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/MAX_UID_VAL_BYTES.html @@ -0,0 +1 @@ +MAX_UID_VAL_BYTES | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variable MAX_UID_VAL_BYTESConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MAX_UID_VAL_BYTES: 330
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/MIN_MAX_GAS_AMOUNT.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/MIN_MAX_GAS_AMOUNT.html new file mode 100644 index 000000000..aaa51aee9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/MIN_MAX_GAS_AMOUNT.html @@ -0,0 +1,5 @@ +MIN_MAX_GAS_AMOUNT | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Variable MIN_MAX_GAS_AMOUNTConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MIN_MAX_GAS_AMOUNT: 2000

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The minimum max gas amount that the SDK will allow for a transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This value acts as a floor to prevent transactions from being built with a max gas amount +below the network's minimum transaction gas units, which would cause +MAX_GAS_UNITS_BELOW_MIN_TRANSACTION_GAS_UNITS errors.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToChainId.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToChainId.html new file mode 100644 index 000000000..802b765ae --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToChainId.html @@ -0,0 +1 @@ +NetworkToChainId | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variable NetworkToChainIdConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NetworkToChainId: Record<string, number> = ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToFaucetAPI.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToFaucetAPI.html new file mode 100644 index 000000000..6d8003bd0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToFaucetAPI.html @@ -0,0 +1 @@ +NetworkToFaucetAPI | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Variable NetworkToFaucetAPIConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NetworkToFaucetAPI: Record<string, string> = ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToIndexerAPI.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToIndexerAPI.html new file mode 100644 index 000000000..bd06c6a22 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToIndexerAPI.html @@ -0,0 +1 @@ +NetworkToIndexerAPI | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variable NetworkToIndexerAPIConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  NetworkToIndexerAPI: Record<string, string> = ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToNetworkName.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToNetworkName.html new file mode 100644 index 000000000..746989d77 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToNetworkName.html @@ -0,0 +1 @@ +NetworkToNetworkName | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Variable NetworkToNetworkNameConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NetworkToNetworkName: Record<string, Network> = ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToNodeAPI.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToNodeAPI.html new file mode 100644 index 000000000..4963c0bbd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToNodeAPI.html @@ -0,0 +1 @@ +NetworkToNodeAPI | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variable NetworkToNodeAPIConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      NetworkToNodeAPI: Record<string, string> = ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToPepperAPI.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToPepperAPI.html new file mode 100644 index 000000000..ccd33e58b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToPepperAPI.html @@ -0,0 +1 @@ +NetworkToPepperAPI | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Variable NetworkToPepperAPIConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        NetworkToPepperAPI: Record<string, string> = ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToProverAPI.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToProverAPI.html new file mode 100644 index 000000000..ab5b13034 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/NetworkToProverAPI.html @@ -0,0 +1 @@ +NetworkToProverAPI | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variable NetworkToProverAPIConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NetworkToProverAPI: Record<string, string> = ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/PrivateCode.EventEmitter.EventEmitter.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/PrivateCode.EventEmitter.EventEmitter.html new file mode 100644 index 000000000..bc00929af --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/PrivateCode.EventEmitter.EventEmitter.html @@ -0,0 +1 @@ +EventEmitter | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Variable EventEmitterConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            EventEmitter: EventEmitterStatic
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/RAW_TRANSACTION_SALT.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/RAW_TRANSACTION_SALT.html new file mode 100644 index 000000000..c81510e3c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/RAW_TRANSACTION_SALT.html @@ -0,0 +1 @@ +RAW_TRANSACTION_SALT | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variable RAW_TRANSACTION_SALTConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RAW_TRANSACTION_SALT: "APTOS::RawTransaction"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/RAW_TRANSACTION_WITH_DATA_SALT.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/RAW_TRANSACTION_WITH_DATA_SALT.html new file mode 100644 index 000000000..aa539b0d9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/RAW_TRANSACTION_WITH_DATA_SALT.html @@ -0,0 +1 @@ +RAW_TRANSACTION_WITH_DATA_SALT | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Variable RAW_TRANSACTION_WITH_DATA_SALTConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                RAW_TRANSACTION_WITH_DATA_SALT: "APTOS::RawTransactionWithData"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/TEXT_ENCODER.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/TEXT_ENCODER.html new file mode 100644 index 000000000..c641b16f0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/TEXT_ENCODER.html @@ -0,0 +1,2 @@ +TEXT_ENCODER | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variable TEXT_ENCODERConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TEXT_ENCODER: TextEncoder = ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shared TextEncoder instance for string serialization to avoid repeated instantiation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/docs/@aptos-labs/ts-sdk-7.0.0/variables/promiseFulfilledStatus.html b/docs/@aptos-labs/ts-sdk-7.0.0/variables/promiseFulfilledStatus.html new file mode 100644 index 000000000..53bc4d243 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-7.0.0/variables/promiseFulfilledStatus.html @@ -0,0 +1 @@ +promiseFulfilledStatus | @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @aptos-labs/ts-sdk - v7.0.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Variable promiseFulfilledStatusConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    promiseFulfilledStatus: "fulfilled"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/docs/@aptos-labs/ts-sdk-latest/index.md b/docs/@aptos-labs/ts-sdk-latest/index.md index 798cf7754..1b475d410 100644 --- a/docs/@aptos-labs/ts-sdk-latest/index.md +++ b/docs/@aptos-labs/ts-sdk-latest/index.md @@ -1,5 +1,5 @@ --- title: Latest Aptos TypeScript SDK Documentation permalink: /@aptos-labs/ts-sdk-latest -redirect_to: /@aptos-labs/ts-sdk-6.2.0 +redirect_to: /@aptos-labs/ts-sdk-7.0.0 --- diff --git a/docs/index.md b/docs/index.md index 4dea28f29..2b3e7eff4 100644 --- a/docs/index.md +++ b/docs/index.md @@ -9,6 +9,7 @@ redirect_from: This is a repository of all Aptos TypeScript SDK documentation by version. - [Latest](@aptos-labs/ts-sdk-latest) +- [Stable - @aptos-labs/ts-sdk-7.0.0](@aptos-labs/ts-sdk-7.0.0) - [Stable - @aptos-labs/ts-sdk-6.2.0](@aptos-labs/ts-sdk-6.2.0) - [Stable - @aptos-labs/ts-sdk-6.1.0](@aptos-labs/ts-sdk-6.1.0) - [Stable - @aptos-labs/ts-sdk-6.0.0](@aptos-labs/ts-sdk-6.0.0) diff --git a/package.json b/package.json index 1376efb03..9222c647b 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { "name": "@aptos-labs/ts-sdk", "description": "Aptos TypeScript SDK", - "packageManager": "pnpm@10.30.3", + "packageManager": "pnpm@10.32.1", "license": "Apache-2.0", "engines": { - "node": ">=20.0.0" + "node": ">=22.0.0" }, "bugs": { "url": "https://github.com/aptos-labs/aptos-ts-sdk/issues/new/choose" @@ -51,8 +51,8 @@ "_spec": "cucumber-js -p default" }, "dependencies": { - "@aptos-labs/aptos-cli": "^1.1.1", - "@aptos-labs/aptos-client": "^2.1.0", + "@aptos-labs/aptos-cli": "^2.0.0", + "@aptos-labs/aptos-client": "^3.0.1", "@noble/curves": "^1.9.0", "@noble/hashes": "^1.5.0", "@scure/bip32": "^1.4.0", @@ -60,7 +60,8 @@ "eventemitter3": "^5.0.4", "js-base64": "^3.7.7", "jwt-decode": "^4.0.0", - "poseidon-lite": "^0.2.0" + "poseidon-lite": "^0.2.0", + "undici": "^7.24.1" }, "devDependencies": { "@babel/traverse": "^7.28.6", @@ -83,7 +84,7 @@ "typescript": "^5.9.3", "vitest": "^4.0.18" }, - "version": "6.2.0", + "version": "7.0.0", "pnpm": { "overrides": { "sucrase": "3.35.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 562b8a7c5..1269b2f4e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16,11 +16,11 @@ importers: .: dependencies: '@aptos-labs/aptos-cli': - specifier: ^1.1.1 - version: 1.1.1 + specifier: ^2.0.0 + version: 2.0.0 '@aptos-labs/aptos-client': - specifier: ^2.1.0 - version: 2.1.0(got@11.8.6) + specifier: ^3.0.1 + version: 3.0.1(undici@7.24.2) '@noble/curves': specifier: ^1.9.0 version: 1.9.7 @@ -45,6 +45,9 @@ importers: poseidon-lite: specifier: ^0.2.0 version: 0.2.1 + undici: + specifier: ^7.24.1 + version: 7.24.2 devDependencies: '@babel/traverse': specifier: ^7.28.6 @@ -106,15 +109,19 @@ importers: packages: - '@aptos-labs/aptos-cli@1.1.1': - resolution: {integrity: sha512-sB7CokCM6s76SLJmccysbnFR+MDik6udKfj2+9ZsmTLV0/t73veIeCDKbvWJmbW267ibx4HiGbPI7L+1+yjEbQ==} + '@aptos-labs/aptos-cli@2.0.0': + resolution: {integrity: sha512-b5xcV4/Aia7GpCRRswmXUr/icE02vY0C+4McwlNGo6dbJQwPh/TpL1ewGvk7vbSJAMKa9l85yJY6JFZdpfDwVQ==} + engines: {node: '>=22'} hasBin: true - '@aptos-labs/aptos-client@2.1.0': - resolution: {integrity: sha512-ttdY0qclRvbYAAwzijkFeipuqTfLFJnoXlNIm58tIw3DKhIlfYdR6iLqTeCpI23oOPghnO99FZecej/0MTrtuA==} - engines: {node: '>=20.0.0'} + '@aptos-labs/aptos-client@3.0.1': + resolution: {integrity: sha512-TPfjNiBWiny/hXuTc+X7GHu/qAcTS9wZkLgVDMbR8LRS7PGemqO9BpPhgIskR1NLy79GqV2d7rDfmOr0kR/+oQ==} + engines: {node: '>=22.0.0'} peerDependencies: - got: ^11.8.6 + undici: ^7.24.1 + peerDependenciesMeta: + undici: + optional: true '@ardatan/relay-compiler@12.0.0': resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==} @@ -1358,17 +1365,9 @@ packages: '@shikijs/vscode-textmate@10.0.2': resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} - '@sindresorhus/is@4.6.0': - resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} - engines: {node: '>=10'} - '@standard-schema/spec@1.1.0': resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} - '@szmarczak/http-timer@4.0.6': - resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} - engines: {node: '>=10'} - '@teppeis/multimaps@3.0.0': resolution: {integrity: sha512-ID7fosbc50TbT0MK0EG12O+gAP3W3Aa/Pz4DaTtQtEvlc9Odaqi0de+xuZ7Li2GtK4HzEX7IuRWS/JmZLksR3Q==} engines: {node: '>=14'} @@ -1379,9 +1378,6 @@ packages: peerDependencies: graphql: ^16.0.0 - '@types/cacheable-request@6.0.3': - resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} - '@types/chai@5.2.3': resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} @@ -1394,21 +1390,12 @@ packages: '@types/hast@3.0.4': resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} - '@types/http-cache-semantics@4.2.0': - resolution: {integrity: sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q==} - - '@types/keyv@3.1.4': - resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} - '@types/node@24.11.0': resolution: {integrity: sha512-fPxQqz4VTgPI/IQ+lj9r0h+fDR66bzoeMGHp8ASee+32OSGIkeASsoZuJixsQoVef1QJbeubcPBxKk22QVoWdw==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} - '@types/responselike@1.0.3': - resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} - '@types/unist@3.0.3': resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} @@ -1584,14 +1571,6 @@ packages: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} - cacheable-lookup@5.0.4: - resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} - engines: {node: '>=10.6.0'} - - cacheable-request@7.0.4: - resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} - engines: {node: '>=8'} - callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} @@ -1656,9 +1635,6 @@ packages: resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} engines: {node: '>=12'} - clone-response@1.0.3: - resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} - color-convert@2.0.1: resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} engines: {node: '>=7.0.0'} @@ -1669,10 +1645,6 @@ packages: colorette@2.0.20: resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} - commander@12.1.0: - resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} - engines: {node: '>=18'} - commander@14.0.0: resolution: {integrity: sha512-2uM9rYjPvyq39NwLRqaiLtWHyDC1FvryJDa2ATTVims5YAS4PupsEQsDvP14FqhFr0P49CYDugi59xaxJlTXRA==} engines: {node: '>=20'} @@ -1758,14 +1730,6 @@ packages: resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} engines: {node: '>=0.10.0'} - decompress-response@6.0.0: - resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} - engines: {node: '>=10'} - - defer-to-connect@2.0.1: - resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} - engines: {node: '>=10'} - dependency-graph@0.11.0: resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==} engines: {node: '>= 0.6.0'} @@ -1806,9 +1770,6 @@ packages: emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - end-of-stream@1.4.5: - resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==} - entities@4.5.0: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} @@ -1925,10 +1886,6 @@ packages: resolution: {integrity: sha512-CQ+bEO+Tva/qlmw24dCejulK5pMzVnUOFOijVogd3KQs07HnRIgp8TGipvCCRT06xeYEbpbgwaCxglFyiuIcmA==} engines: {node: '>=18'} - get-stream@5.2.0: - resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} - engines: {node: '>=8'} - glob-parent@5.1.2: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} engines: {node: '>= 6'} @@ -1949,10 +1906,6 @@ packages: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} - got@11.8.6: - resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} - engines: {node: '>=10.19.0'} - graphql-config@5.1.5: resolution: {integrity: sha512-mG2LL1HccpU8qg5ajLROgdsBzx/o2M6kgI3uAmoaXiSH9PCUbtIyLomLqUtCFaAeG2YCFsl0M5cfQ9rKmDoMVA==} engines: {node: '>= 16.0.0'} @@ -2012,13 +1965,6 @@ packages: html-escaper@2.0.2: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} - http-cache-semantics@4.2.0: - resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==} - - http2-wrapper@1.0.3: - resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} - engines: {node: '>=10.19.0'} - iconv-lite@0.7.2: resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==} engines: {node: '>=0.10.0'} @@ -2169,9 +2115,6 @@ packages: engines: {node: '>=6'} hasBin: true - json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - json-parse-even-better-errors@2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} @@ -2188,9 +2131,6 @@ packages: resolution: {integrity: sha512-+KJGIyHgkGuIq3IEBNftfhW/LfWhXUIY6OmyVWjliu5KH1y0fw7VQ8YndE2O4qZdMSd9SqbnC8GOcZEy0Om7sA==} engines: {node: '>=18'} - keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} - knuth-shuffle-seeded@1.0.6: resolution: {integrity: sha512-9pFH0SplrfyKyojCLxZfMcvkhf5hH0d+UwR9nTVJ/DDQJGuzcXjTwB7TP7sDfehSudlGGaOLblmEWqv04ERVWg==} @@ -2246,10 +2186,6 @@ packages: lower-case@2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} - lowercase-keys@2.0.0: - resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} - engines: {node: '>=8'} - lru-cache@11.2.6: resolution: {integrity: sha512-ESL2CrkS/2wTPfuend7Zhkzo2u0daGJ/A2VucJOgQ/C48S/zB8MMeMHSGKYpXhIjbPxfuezITkaBH1wqv00DDQ==} engines: {node: 20 || >=22} @@ -2311,14 +2247,6 @@ packages: resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} engines: {node: '>=18'} - mimic-response@1.0.1: - resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} - engines: {node: '>=4'} - - mimic-response@3.1.0: - resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} - engines: {node: '>=10'} - minimatch@10.2.4: resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==} engines: {node: 18 || 20 || >=22} @@ -2392,10 +2320,6 @@ packages: resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} engines: {node: '>=0.10.0'} - normalize-url@6.1.0: - resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} - engines: {node: '>=10'} - nullthrows@1.1.1: resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} @@ -2413,10 +2337,6 @@ packages: resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} engines: {node: '>=18'} - p-cancelable@2.1.1: - resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} - engines: {node: '>=8'} - p-limit@2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} engines: {node: '>=6'} @@ -2542,9 +2462,6 @@ packages: property-expr@2.0.6: resolution: {integrity: sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==} - pump@3.0.4: - resolution: {integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==} - punycode.js@2.3.1: resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} engines: {node: '>=6'} @@ -2552,10 +2469,6 @@ packages: queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - quick-lru@5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: '>=10'} - read-package-up@12.0.0: resolution: {integrity: sha512-Q5hMVBYur/eQNWDdbF4/Wqqr9Bjvtrw2kjGxxBbKLbx8bVCL8gcArjTy8zDUuLGQicftpMuU0riQNcAsbtOVsw==} engines: {node: '>=20'} @@ -2601,9 +2514,6 @@ packages: require-main-filename@2.0.0: resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} - resolve-alpn@1.2.1: - resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} - resolve-from@4.0.0: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} engines: {node: '>=4'} @@ -2612,9 +2522,6 @@ packages: resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} engines: {node: '>=8'} - responselike@2.0.1: - resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} - restore-cursor@5.1.0: resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} engines: {node: '>=18'} @@ -2914,6 +2821,10 @@ packages: undici-types@7.16.0: resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==} + undici@7.24.2: + resolution: {integrity: sha512-P9J1HWYV/ajFr8uCqk5QixwiRKmB1wOamgS0e+o2Z4A44Ej2+thFVRLG/eA7qprx88XXhnV5Bl8LHXTURpzB3Q==} + engines: {node: '>=20.18.1'} + unicorn-magic@0.4.0: resolution: {integrity: sha512-wH590V9VNgYH9g3lH9wWjTrUoKsjLF6sGLjhR4sH1LWpLmCOH0Zf7PukhDA8BiS7KHe4oPNkcTHqYkj7SOGUOw==} engines: {node: '>=20'} @@ -3114,13 +3025,13 @@ packages: snapshots: - '@aptos-labs/aptos-cli@1.1.1': + '@aptos-labs/aptos-cli@2.0.0': dependencies: - commander: 12.1.0 + commander: 14.0.3 - '@aptos-labs/aptos-client@2.1.0(got@11.8.6)': - dependencies: - got: 11.8.6 + '@aptos-labs/aptos-client@3.0.1(undici@7.24.2)': + optionalDependencies: + undici: 7.24.2 '@ardatan/relay-compiler@12.0.0(graphql@16.13.1)': dependencies: @@ -4580,14 +4491,8 @@ snapshots: '@shikijs/vscode-textmate@10.0.2': {} - '@sindresorhus/is@4.6.0': {} - '@standard-schema/spec@1.1.0': {} - '@szmarczak/http-timer@4.0.6': - dependencies: - defer-to-connect: 2.0.1 - '@teppeis/multimaps@3.0.0': {} '@theguild/federation-composition@0.22.0(graphql@16.13.1)': @@ -4600,13 +4505,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@types/cacheable-request@6.0.3': - dependencies: - '@types/http-cache-semantics': 4.2.0 - '@types/keyv': 3.1.4 - '@types/node': 24.11.0 - '@types/responselike': 1.0.3 - '@types/chai@5.2.3': dependencies: '@types/deep-eql': 4.0.2 @@ -4620,22 +4518,12 @@ snapshots: dependencies: '@types/unist': 3.0.3 - '@types/http-cache-semantics@4.2.0': {} - - '@types/keyv@3.1.4': - dependencies: - '@types/node': 24.11.0 - '@types/node@24.11.0': dependencies: undici-types: 7.16.0 '@types/normalize-package-data@2.4.4': {} - '@types/responselike@1.0.3': - dependencies: - '@types/node': 24.11.0 - '@types/unist@3.0.3': {} '@types/ws@8.18.1': @@ -4839,18 +4727,6 @@ snapshots: cac@6.7.14: {} - cacheable-lookup@5.0.4: {} - - cacheable-request@7.0.4: - dependencies: - clone-response: 1.0.3 - get-stream: 5.2.0 - http-cache-semantics: 4.2.0 - keyv: 4.5.4 - lowercase-keys: 2.0.0 - normalize-url: 6.1.0 - responselike: 2.0.1 - callsites@3.1.0: {} camel-case@4.1.2: @@ -4940,10 +4816,6 @@ snapshots: strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - clone-response@1.0.3: - dependencies: - mimic-response: 1.0.1 - color-convert@2.0.1: dependencies: color-name: 1.1.4 @@ -4952,8 +4824,6 @@ snapshots: colorette@2.0.20: {} - commander@12.1.0: {} - commander@14.0.0: {} commander@14.0.2: {} @@ -5020,12 +4890,6 @@ snapshots: decamelize@1.2.0: {} - decompress-response@6.0.0: - dependencies: - mimic-response: 3.1.0 - - defer-to-connect@2.0.1: {} - dependency-graph@0.11.0: {} dependency-graph@1.0.0: {} @@ -5053,10 +4917,6 @@ snapshots: emoji-regex@8.0.0: {} - end-of-stream@1.4.5: - dependencies: - once: 1.4.0 - entities@4.5.0: {} env-paths@2.2.1: {} @@ -5189,10 +5049,6 @@ snapshots: get-east-asian-width@1.5.0: {} - get-stream@5.2.0: - dependencies: - pump: 3.0.4 - glob-parent@5.1.2: dependencies: is-glob: 4.0.3 @@ -5225,20 +5081,6 @@ snapshots: merge2: 1.4.1 slash: 3.0.0 - got@11.8.6: - dependencies: - '@sindresorhus/is': 4.6.0 - '@szmarczak/http-timer': 4.0.6 - '@types/cacheable-request': 6.0.3 - '@types/responselike': 1.0.3 - cacheable-lookup: 5.0.4 - cacheable-request: 7.0.4 - decompress-response: 6.0.0 - http2-wrapper: 1.0.3 - lowercase-keys: 2.0.0 - p-cancelable: 2.1.1 - responselike: 2.0.1 - graphql-config@5.1.5(@types/node@24.11.0)(graphql@16.13.1)(typescript@5.9.3): dependencies: '@graphql-tools/graphql-file-loader': 8.1.11(graphql@16.13.1) @@ -5297,13 +5139,6 @@ snapshots: html-escaper@2.0.2: {} - http-cache-semantics@4.2.0: {} - - http2-wrapper@1.0.3: - dependencies: - quick-lru: 5.1.1 - resolve-alpn: 1.2.1 - iconv-lite@0.7.2: dependencies: safer-buffer: 2.1.2 @@ -5423,8 +5258,6 @@ snapshots: jsesc@3.1.0: {} - json-buffer@3.0.1: {} - json-parse-even-better-errors@2.3.1: {} json-to-pretty-yaml@1.2.2: @@ -5436,10 +5269,6 @@ snapshots: jwt-decode@4.0.0: {} - keyv@4.5.4: - dependencies: - json-buffer: 3.0.1 - knuth-shuffle-seeded@1.0.6: dependencies: seed-random: 2.2.0 @@ -5500,8 +5329,6 @@ snapshots: dependencies: tslib: 2.8.1 - lowercase-keys@2.0.0: {} - lru-cache@11.2.6: {} lru-cache@5.1.1: @@ -5554,10 +5381,6 @@ snapshots: mimic-function@5.0.1: {} - mimic-response@1.0.1: {} - - mimic-response@3.1.0: {} - minimatch@10.2.4: dependencies: brace-expansion: 5.0.4 @@ -5624,8 +5447,6 @@ snapshots: dependencies: remove-trailing-separator: 1.1.0 - normalize-url@6.1.0: {} - nullthrows@1.1.1: {} object-assign@4.1.1: {} @@ -5640,8 +5461,6 @@ snapshots: dependencies: mimic-function: 5.0.1 - p-cancelable@2.1.1: {} - p-limit@2.3.0: dependencies: p-try: 2.2.0 @@ -5755,17 +5574,10 @@ snapshots: property-expr@2.0.6: {} - pump@3.0.4: - dependencies: - end-of-stream: 1.4.5 - once: 1.4.0 - punycode.js@2.3.1: {} queue-microtask@1.2.3: {} - quick-lru@5.1.1: {} - read-package-up@12.0.0: dependencies: find-up-simple: 1.0.1 @@ -5810,16 +5622,10 @@ snapshots: require-main-filename@2.0.0: {} - resolve-alpn@1.2.1: {} - resolve-from@4.0.0: {} resolve-from@5.0.0: {} - responselike@2.0.1: - dependencies: - lowercase-keys: 2.0.0 - restore-cursor@5.1.0: dependencies: onetime: 7.0.0 @@ -6119,6 +5925,8 @@ snapshots: undici-types@7.16.0: {} + undici@7.24.2: {} + unicorn-magic@0.4.0: {} unixify@1.0.0: diff --git a/src/core/crypto/multiKey.ts b/src/core/crypto/multiKey.ts index 86c2f021f..d7034262a 100644 --- a/src/core/crypto/multiKey.ts +++ b/src/core/crypto/multiKey.ts @@ -165,9 +165,7 @@ export class MultiKey extends AbstractMultiKey { ).length; if (keylessCount > MAX_NUM_KEYLESS_PUBLIC_FOR_MULTI_KEY) { throw new Error( - `Construction of MultiKey with more than ${MAX_NUM_KEYLESS_PUBLIC_FOR_MULTI_KEY} keyless public keys is not allowed when signaturesRequired - is greater than ${MAX_NUM_KEYLESS_PUBLIC_FOR_MULTI_KEY}. This is because a maximum of 3 keyless signatures are supported for a - K-of-N MultiKey transaction.`, + `Construction of MultiKey with more than ${MAX_NUM_KEYLESS_PUBLIC_FOR_MULTI_KEY} keyless public keys is not allowed when signaturesRequired is greater than ${MAX_NUM_KEYLESS_PUBLIC_FOR_MULTI_KEY}. This is because a maximum of 3 keyless signatures are supported for a K-of-N MultiKey transaction.`, ); } } diff --git a/src/errors/index.ts b/src/errors/index.ts index b469e640e..bc0b0e1d9 100644 --- a/src/errors/index.ts +++ b/src/errors/index.ts @@ -407,7 +407,11 @@ export class AptosApiError extends Error { function deriveErrorMessage({ apiType, aptosRequest, aptosResponse }: AptosApiErrorOpts): string { // extract the W3C trace_id from the response headers if it exists. Some services set this in the response, and it's useful for debugging. // See https://www.w3.org/TR/trace-context/#relationship-between-the-headers . - const traceId = aptosResponse.headers?.traceparent?.split("-")[1]; + const traceparent = + typeof aptosResponse.headers?.get === "function" + ? aptosResponse.headers.get("traceparent") + : aptosResponse.headers?.traceparent; + const traceId = traceparent?.split("-")[1]; const traceIdString = traceId ? `(trace_id:${traceId}) ` : ""; const errorPrelude: string = `Request to [${apiType}]: ${aptosRequest.method} ${ diff --git a/src/version.ts b/src/version.ts index fed55d28c..086da44f1 100644 --- a/src/version.ts +++ b/src/version.ts @@ -6,4 +6,4 @@ * * hardcoded for now, we would want to have it injected dynamically */ -export const VERSION = "6.2.0"; +export const VERSION = "7.0.0"; diff --git a/tests/e2e/client/aptosRequest.test.ts b/tests/e2e/client/aptosRequest.test.ts index 705b33e5e..ffe11d4d8 100644 --- a/tests/e2e/client/aptosRequest.test.ts +++ b/tests/e2e/client/aptosRequest.test.ts @@ -55,13 +55,11 @@ describe("aptos request", () => { config, AptosApiType.FULLNODE, ); - expect(response.config.headers).toHaveProperty("x-aptos-client", `aptos-typescript-sdk/${VERSION}`); - expect(response.config.headers).toHaveProperty("my", "header"); - expect(response.config.headers).toHaveProperty("content-type", "application/x.aptos.signed_transaction+bcs"); - expect(response.config.headers).toHaveProperty( - "x-aptos-typescript-sdk-origin-method", - "test request includes all headers", - ); + const h = response.config.headers; + expect(h.get("x-aptos-client")).toEqual(`aptos-typescript-sdk/${VERSION}`); + expect(h.get("my")).toEqual("header"); + expect(h.get("content-type")).toEqual("application/x.aptos.signed_transaction+bcs"); + expect(h.get("x-aptos-typescript-sdk-origin-method")).toEqual("test request includes all headers"); } catch (error: any) { // should not get here console.log("Error in 'headers'", error); @@ -88,7 +86,7 @@ describe("aptos request", () => { config, AptosApiType.FULLNODE, ); - expect(response.config.headers).toHaveProperty("authorization", `Bearer ${dummyKey}`); + expect(response.config.headers.get("authorization")).toEqual(`Bearer ${dummyKey}`); } catch (error: any) { // should not get here console.log("Error in 'api_token for full node requests'", error); diff --git a/tests/e2e/client/get.test.ts b/tests/e2e/client/get.test.ts index 77738a3e8..da3ea2b5d 100644 --- a/tests/e2e/client/get.test.ts +++ b/tests/e2e/client/get.test.ts @@ -1,7 +1,7 @@ -import { AptosConfig, LedgerInfo, getAptosFullNode } from "../../../src"; +import { LedgerInfo, getAptosFullNode } from "../../../src"; import { getAptosClient } from "../helper"; -const partialConfig = new AptosConfig({ +const partialConfig = { clientConfig: { HEADERS: { clientConfig: "clientConfig-header" }, API_KEY: "api-key", @@ -9,32 +9,23 @@ const partialConfig = new AptosConfig({ fullnodeConfig: { HEADERS: { fullnodeHeader: "fullnode-header" } }, indexerConfig: { HEADERS: { indexerHeader: "indexer-header" } }, faucetConfig: { HEADERS: { faucetHeader: "faucet-header" }, AUTH_TOKEN: "auth-token" }, -}); +}; const { config: aptosConfig } = getAptosClient(partialConfig); -// All tests are expected to catch becuase server call will fail -// due to a fake API_KEY. But that is ok because we just want -// to test the config we set describe("get request", () => { describe("fullnode", () => { test("it sets correct headers on get request", async () => { - try { - await getAptosFullNode<{}, LedgerInfo>({ - aptosConfig, - originMethod: "testGetFullnodeQuery", - path: "", - }); - } catch (e: any) { - expect(e.request.overrides.API_KEY).toEqual("api-key"); - expect(e.request.overrides.HEADERS).toHaveProperty("clientConfig"); - expect(e.request.overrides.HEADERS.clientConfig).toEqual("clientConfig-header"); - expect(e.request.overrides.HEADERS).toHaveProperty("fullnodeHeader"); - expect(e.request.overrides.HEADERS.fullnodeHeader).toEqual("fullnode-header"); - // Properties should not be included - expect(e.request.overrides.HEADERS).not.toHaveProperty("faucetConfig"); - expect(e.request.overrides.HEADERS).not.toHaveProperty("AUTH_TOKEN"); - expect(e.request.overrides.HEADERS).not.toHaveProperty("indexerHeader"); - } + const response = await getAptosFullNode<{}, LedgerInfo>({ + aptosConfig, + originMethod: "testGetFullnodeQuery", + path: "", + }); + const h = response.config.headers; + expect(h.get("clientconfig")).toEqual("clientConfig-header"); + expect(h.get("authorization")).toEqual("Bearer api-key"); + expect(h.get("fullnodeheader")).toEqual("fullnode-header"); + expect(h.get("indexerheader")).toBeNull(); + expect(h.get("faucetheader")).toBeNull(); }); }); }); diff --git a/tests/e2e/client/post.test.ts b/tests/e2e/client/post.test.ts index cd86bc417..b72a51096 100644 --- a/tests/e2e/client/post.test.ts +++ b/tests/e2e/client/post.test.ts @@ -39,15 +39,12 @@ describe("post request", () => { }, overrides: { WITH_CREDENTIALS: false }, }); - expect(response.config.headers).toHaveProperty("clientconfig"); - expect(response.config.headers.clientconfig).toEqual("clientConfig-header"); - expect(response.config.headers).toHaveProperty("authorization"); - expect(response.config.headers.authorization).toEqual("Bearer api-key"); - expect(response.config.headers).toHaveProperty("indexerheader"); - expect(response.config.headers.indexerheader).toEqual("indexer-header"); - // Properties that should not be included - expect(response.config.headers).not.toHaveProperty("fullnodeheader"); - expect(response.config.headers).not.toHaveProperty("faucetheader"); + const h = response.config.headers; + expect(h.get("clientconfig")).toEqual("clientConfig-header"); + expect(h.get("authorization")).toEqual("Bearer api-key"); + expect(h.get("indexerheader")).toEqual("indexer-header"); + expect(h.get("fullnodeheader")).toBeNull(); + expect(h.get("faucetheader")).toBeNull(); }); }); describe("fullnode", () => { @@ -62,15 +59,12 @@ describe("post request", () => { arguments: [], }, }); - expect(response.config.headers).toHaveProperty("clientconfig"); - expect(response.config.headers.clientconfig).toEqual("clientConfig-header"); - expect(response.config.headers).toHaveProperty("authorization"); - expect(response.config.headers.authorization).toEqual("Bearer api-key"); - expect(response.config.headers).toHaveProperty("fullnodeheader"); - expect(response.config.headers.fullnodeheader).toEqual("fullnode-header"); - // Properties that should not be included - expect(response.config.headers).not.toHaveProperty("indexerheader"); - expect(response.config.headers).not.toHaveProperty("faucetheader"); + const h = response.config.headers; + expect(h.get("clientconfig")).toEqual("clientConfig-header"); + expect(h.get("authorization")).toEqual("Bearer api-key"); + expect(h.get("fullnodeheader")).toEqual("fullnode-header"); + expect(h.get("indexerheader")).toBeNull(); + expect(h.get("faucetheader")).toBeNull(); }); }); describe("faucet", () => { @@ -85,15 +79,12 @@ describe("post request", () => { }, originMethod: "testQueryFaucet", }); - expect(response.config.headers).toHaveProperty("clientconfig"); - expect(response.config.headers.clientconfig).toEqual("clientConfig-header"); - expect(response.config.headers).toHaveProperty("authorization"); - expect(response.config.headers.authorization).toEqual("Bearer auth-token"); - expect(response.config.headers).toHaveProperty("faucetheader"); - expect(response.config.headers.faucetheader).toEqual("faucet-header"); - // Properties that should not be included - expect(response.config.headers).not.toHaveProperty("fullnodeheader"); - expect(response.config.headers).not.toHaveProperty("indexerheader"); + const h = response.config.headers; + expect(h.get("clientconfig")).toEqual("clientConfig-header"); + expect(h.get("authorization")).toEqual("Bearer auth-token"); + expect(h.get("faucetheader")).toEqual("faucet-header"); + expect(h.get("fullnodeheader")).toBeNull(); + expect(h.get("indexerheader")).toBeNull(); }); }); }); diff --git a/tsconfig.json b/tsconfig.json index 59f3aca9b..27dd3b0f4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,20 +1,21 @@ { "compilerOptions": { - "allowSyntheticDefaultImports": true, - "allowJs": true, "declaration": true, "declarationDir": "types", "declarationMap": true, "esModuleInterop": true, "experimentalDecorators": true, - "module": "esnext", + "forceConsistentCasingInFileNames": true, + "isolatedModules": true, + "module": "ESNext", "moduleDetection": "force", - "moduleResolution": "node", - "noImplicitAny": true, + "moduleResolution": "bundler", "outDir": "./dist", + "resolveJsonModule": true, + "skipLibCheck": true, "sourceMap": true, "strict": true, - "target": "es2020", + "target": "ES2022", "types": ["node", "vitest/globals"] }, "include": ["src", "tests", "tsup.config.ts", "vitest.config.ts"] diff --git a/tsup.config.ts b/tsup.config.ts index f61116886..ac492aa53 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -17,7 +17,7 @@ const DEFAULT_CONFIG: Options = { skipNodeModulesBundle: true, sourcemap: true, splitting: true, - target: "es2020", + target: "es2022", platform: "node", env: { APTOS_NETWORK: process.env.APTOS_NETWORK ?? "Devnet", @@ -28,12 +28,15 @@ const DEFAULT_CONFIG: Options = { }, }; -// Common.js config +// Common.js config — target es2020 for CJS because tsup's sucrase transformer +// generates invalid syntax (semicolons inside `if()` conditions) when esbuild +// preserves ES2022 class fields in the CJS output. const COMMON_CONFIG: MandatoryOptions = { ...DEFAULT_CONFIG, entry: ["src/index.ts", "src/cli/index.ts"], format: "cjs", outDir: "dist/common", + target: "es2020", }; // ESM config diff --git a/upgrade-guides/UPGRADE_GUIDE_7.0.0.md b/upgrade-guides/UPGRADE_GUIDE_7.0.0.md new file mode 100644 index 000000000..9aad1686b --- /dev/null +++ b/upgrade-guides/UPGRADE_GUIDE_7.0.0.md @@ -0,0 +1,66 @@ +# Upgrade Guide: Aptos TypeScript SDK 7.0.0 + +This guide will help you migrate your code from SDK version 6.x to 7.0.0. + +## Table of Contents + +- [Overview](#overview) +- [Breaking Changes](#breaking-changes) + - [Node.js Version Requirement](#nodejs-version-requirement) + - [Dependency Upgrades](#dependency-upgrades) + - [Build Target Changes](#build-target-changes) +- [Migration Steps](#migration-steps) + +## Overview + +Version 7.0.0 modernizes the SDK's runtime and build targets. The primary changes are: + +1. **Node.js 22+** is now required (Node 20 reaches EOL in April 2026) +2. Major dependency upgrades to `@aptos-labs/aptos-cli` v2 and `@aptos-labs/aptos-client` v3 +3. Build and TypeScript compilation targets raised from ES2020 to ES2022 + +## Breaking Changes + +### Node.js Version Requirement + +The minimum Node.js version has been raised from `>=20.0.0` to `>=22.0.0`. + +**Action required:** Ensure your environment runs Node.js 22 or later. + +```bash +node --version +# Must be v22.0.0 or higher +``` + +### Dependency Upgrades + +The following Aptos dependencies have been upgraded to new major versions: + +| Package | Previous | New | +|---------|----------|-----| +| `@aptos-labs/aptos-cli` | ^1.1.1 | ^2.0.0 | +| `@aptos-labs/aptos-client` | ^2.1.0 | ^3.0.1 | + +These upgrades include improved tree shaking and configuration. If you directly depend on these packages, update them accordingly. + +### Build Target Changes + +The SDK now compiles to **ES2022** (previously ES2020). This means the output may use newer JavaScript features such as: + +- Top-level `await` +- `Object.hasOwn()` +- `Array.prototype.at()` +- `Error.cause` + +If you target older environments, ensure your bundler transpiles the SDK output as needed. + +### TypeScript Module Resolution + +The TypeScript `moduleResolution` has changed from `node` to `bundler`. This should not affect most consumers, but if you import from the SDK using deep paths, ensure your TypeScript configuration supports bundler-style resolution. + +## Migration Steps + +1. **Update Node.js** to v22 or later +2. **Update the SDK**: `npm install @aptos-labs/ts-sdk@7.0.0` (or pnpm/yarn equivalent) +3. **Check your bundler** supports ES2022 output, or configure it to transpile as needed +4. **Update direct dependencies** on `@aptos-labs/aptos-cli` or `@aptos-labs/aptos-client` if applicable